diff options
Diffstat (limited to 'test/Transforms/LoopStrengthReduce/var_stride_used_by_compare.ll')
-rw-r--r-- | test/Transforms/LoopStrengthReduce/var_stride_used_by_compare.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/LoopStrengthReduce/var_stride_used_by_compare.ll b/test/Transforms/LoopStrengthReduce/var_stride_used_by_compare.ll index 53eedd6732..168c3d091d 100644 --- a/test/Transforms/LoopStrengthReduce/var_stride_used_by_compare.ll +++ b/test/Transforms/LoopStrengthReduce/var_stride_used_by_compare.ll @@ -1,9 +1,9 @@ ; Base should not be i*3, it should be i*2. -; RUN: llvm-as < %s | opt -loop-reduce | llvm-dis | \ +; RUN: opt %s -loop-reduce | llvm-dis | \ ; RUN: not grep {mul.*%i, 3} ; Indvar should not start at zero: -; RUN: llvm-as < %s | opt -loop-reduce | llvm-dis | \ +; RUN: opt %s -loop-reduce | llvm-dis | \ ; RUN: not grep {phi i32 .* 0} ; END. |