brintos

brintos / llvm-project-archived public Read only

0
0
Text · 704 B · eed8f67 Raw
24 lines · plain
1; RUN: llc %s -o - -verify-machineinstrs | FileCheck %s2 3target datalayout = "e-m:o-p:32:32-f64:32:64-v64:32:64-v128:32:128-a:0:32-n32-S32"4target triple = "thumbv7s-unknown-unknown"5 6; Test that we don't crash the machine verifier when expanding t2ABS.7; It was applying the kill flag to its source, even if the original t2ABS didn't8; kill the operand prior to pseudo expansion.9 10; Function Attrs: noreturn11declare void @foo(i32, i32) #012 13; CHECK-LABEL: @test14; CHECK: rsbmi15define void @test(i32 %arg) {16  %cmp58 = icmp slt i32 %arg, 017  %sub62 = sub nsw i32 0, %arg18  %l.1 = select i1 %cmp58, i32 %sub62, i32 %arg19  call void @foo(i32 %l.1, i32 %arg) #020  unreachable21}22 23attributes #0 = { noreturn }24