diff options
Diffstat (limited to 'llvm/test/Transforms/Reassociate/basictest.ll')
-rw-r--r-- | llvm/test/Transforms/Reassociate/basictest.ll | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/llvm/test/Transforms/Reassociate/basictest.ll b/llvm/test/Transforms/Reassociate/basictest.ll index a7ff84a65e6..09db47b1907 100644 --- a/llvm/test/Transforms/Reassociate/basictest.ll +++ b/llvm/test/Transforms/Reassociate/basictest.ll @@ -1,9 +1,10 @@ ; With reassociation, constant folding can eliminate the 12 and -12 constants. ; -; RUN: llvm-upgrade < %s | llvm-as | opt -reassociate -constprop -instcombine -die | llvm-dis | not grep add +; RUN: llvm-as < %s | opt -reassociate -constprop -instcombine -die | llvm-dis | not grep add -int %test(int %arg) { - %tmp1 = sub int -12, %arg - %tmp2 = add int %tmp1, 12 - ret int %tmp2 +define i32 @test(i32 %arg) { + %tmp1 = sub i32 -12, %arg ; <i32> [#uses=1] + %tmp2 = add i32 %tmp1, 12 ; <i32> [#uses=1] + ret i32 %tmp2 } + |