diff options
Diffstat (limited to 'test/Transforms/Reassociate/shifttest.ll')
-rw-r--r-- | test/Transforms/Reassociate/shifttest.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/Reassociate/shifttest.ll b/test/Transforms/Reassociate/shifttest.ll index 6ca6622467..6a65aafb18 100644 --- a/test/Transforms/Reassociate/shifttest.ll +++ b/test/Transforms/Reassociate/shifttest.ll @@ -1,6 +1,6 @@ ; With shl->mul reassociation, we can see that this is (shl A, 9) * A ; -; RUN: llvm-as < %s | opt -reassociate -instcombine | llvm-dis | grep 'shl .*, ubyte 9' +; RUN: llvm-upgrade < %s | llvm-as | opt -reassociate -instcombine | llvm-dis | grep 'shl .*, ubyte 9' int %test(int %A, int %B) { %X = shl int %A, ubyte 5 |