diff options
author | Andrew Trick <atrick@apple.com> | 2011-06-02 23:57:27 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2011-06-02 23:57:27 +0000 |
commit | 98c521ceba07092ac8fd68dbf6be1fdefc07efd5 (patch) | |
tree | c5302963ff45396d93313a1b6919e93e7bfede79 /test/Transforms/IndVarSimplify | |
parent | 448ab3ab395ffc9e7fc04d2d6afb41fcac74070d (diff) |
Test case pasto (failed when run with IR verifier).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132516 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/IndVarSimplify')
-rw-r--r-- | test/Transforms/IndVarSimplify/elim-extend.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/IndVarSimplify/elim-extend.ll b/test/Transforms/IndVarSimplify/elim-extend.ll index 4b336f0379..0367e117e6 100644 --- a/test/Transforms/IndVarSimplify/elim-extend.ll +++ b/test/Transforms/IndVarSimplify/elim-extend.ll @@ -138,11 +138,11 @@ outermerge: %ofs4 = sext i32 %outercount to i64 %adr4 = getelementptr i8* %address, i64 %ofs4 - store i8 0, i8* %adr3 + store i8 0, i8* %adr4 %ofs5 = sext i32 %innercount.merge to i64 %adr5 = getelementptr i8* %address, i64 %ofs5 - store i8 0, i8* %adr4 + store i8 0, i8* %adr5 %outerpostcount = add i32 %outercount, 1 %tmp47 = icmp slt i32 %outerpostcount, %limit |