diff options
Diffstat (limited to 'llvm/test/Transforms/Reassociate/shifttest.ll')
-rw-r--r-- | llvm/test/Transforms/Reassociate/shifttest.ll | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/llvm/test/Transforms/Reassociate/shifttest.ll b/llvm/test/Transforms/Reassociate/shifttest.ll index 3603604caab..fd49e7d3f22 100644 --- a/llvm/test/Transforms/Reassociate/shifttest.ll +++ b/llvm/test/Transforms/Reassociate/shifttest.ll @@ -1,11 +1,12 @@ ; With shl->mul reassociation, we can see that this is (shl A, 9) * A ; -; RUN: llvm-upgrade < %s | llvm-as | opt -reassociate -instcombine | llvm-dis |\ +; RUN: llvm-as < %s | opt -reassociate -instcombine | llvm-dis |\ ; RUN: grep {shl .*, 9} -int %test(int %A, int %B) { - %X = shl int %A, ubyte 5 - %Y = shl int %A, ubyte 4 - %Z = mul int %Y, %X - ret int %Z +define i32 @test(i32 %A, i32 %B) { + %X = shl i32 %A, 5 ; <i32> [#uses=1] + %Y = shl i32 %A, 4 ; <i32> [#uses=1] + %Z = mul i32 %Y, %X ; <i32> [#uses=1] + ret i32 %Z } + |