diff options
author | Chris Lattner <sabre@nondot.org> | 2005-09-12 17:09:40 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-09-12 17:09:40 +0000 |
commit | e4b56572f9df10ae684069fc51a50a1977e065ba (patch) | |
tree | 97db0323c9d5c59146d8a8272bdb6d6a062cde10 /test/Transforms/LoopStrengthReduce/use_postinc_value_outside_loop.ll | |
parent | 24e357ce1107a39fb6bf7fbfaa662147e4de8d7b (diff) |
relax pattern match on name
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23317 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/LoopStrengthReduce/use_postinc_value_outside_loop.ll')
-rw-r--r-- | test/Transforms/LoopStrengthReduce/use_postinc_value_outside_loop.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/LoopStrengthReduce/use_postinc_value_outside_loop.ll b/test/Transforms/LoopStrengthReduce/use_postinc_value_outside_loop.ll index 42bbbcb50c..13f4701f4b 100644 --- a/test/Transforms/LoopStrengthReduce/use_postinc_value_outside_loop.ll +++ b/test/Transforms/LoopStrengthReduce/use_postinc_value_outside_loop.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | opt -loop-reduce | llvm-dis | grep 'add uint %iv..inc, 1' +; RUN: llvm-as < %s | opt -loop-reduce | llvm-dis | grep 'add uint %iv.*inc, 1' ; ; Make sure that the use of the IV outside of the loop (the store) uses the ; post incremented value of the IV, not the preincremented value. This |