diff options
author | Chris Lattner <sabre@nondot.org> | 2010-08-18 04:55:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-08-18 04:55:12 +0000 |
commit | 285d06ca93467f325c99f875a9dd91c9bce62ff5 (patch) | |
tree | 1b08f3525a8d842895bdf40ca5ee149768e154ea | |
parent | 91b2307a89b836f9452cf867e077ce9762d0845b (diff) |
fix a buggy test
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111354 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Analysis/BasicAA/gep-alias.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Analysis/BasicAA/gep-alias.ll b/test/Analysis/BasicAA/gep-alias.ll index 1ed0312247..f3ccb041f0 100644 --- a/test/Analysis/BasicAA/gep-alias.ll +++ b/test/Analysis/BasicAA/gep-alias.ll @@ -115,13 +115,13 @@ define i32 @test7(i32* %p, i64 %i) { ; CHECK: ret i32 0 } -; P[zext(i)] != p[zext(i+1)] +; P[sext(i)] != p[sext(i+1)] ; PR1143 define i32 @test8(i32* %p, i32 %i) { - %i1 = zext i32 %i to i64 + %i1 = sext i32 %i to i64 %pi = getelementptr i32* %p, i64 %i1 %i.next = add i32 %i, 1 - %i.next2 = zext i32 %i.next to i64 + %i.next2 = sext i32 %i.next to i64 %pi.next = getelementptr i32* %p, i64 %i.next2 %x = load i32* %pi store i32 42, i32* %pi.next |