diff options
author | Chris Lattner <sabre@nondot.org> | 2005-03-06 22:24:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-03-06 22:24:45 +0000 |
commit | 2d9005d61fc7e7f0b4b3e1886e6a478119e36414 (patch) | |
tree | 605e177064fb6ab9a4dfa4c93030b9e24a1d1f51 | |
parent | 57f74708d7f9e4c82077bdfff7f259ca1fae7d22 (diff) |
cleanup the test
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20504 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/LoopStrengthReduce/dont_insert_redundant_ops.ll | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/Transforms/LoopStrengthReduce/dont_insert_redundant_ops.ll b/test/Transforms/LoopStrengthReduce/dont_insert_redundant_ops.ll index 9d1b748865..86fd05edab 100644 --- a/test/Transforms/LoopStrengthReduce/dont_insert_redundant_ops.ll +++ b/test/Transforms/LoopStrengthReduce/dont_insert_redundant_ops.ll @@ -3,7 +3,7 @@ declare bool %pred() -void %test({ int, int }* %P) { +void %test1({ int, int }* %P) { br label %Loop Loop: %INDVAR = phi int [0, %0], [%INDVAR2, %Loop] @@ -21,9 +21,7 @@ Out: ret void } -declare bool %pred() - -void %test([2 x int]* %P) { +void %test2([2 x int]* %P) { br label %Loop Loop: %INDVAR = phi int [0, %0], [%INDVAR2, %Loop] |