diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-03-16 18:28:27 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-03-16 18:28:27 +0000 |
| commit | ba3172166d4b5e28c8f642543cfdf4fe9a0deffd (patch) | |
| tree | de067aa49b28a0b1cef15b408445fb3e1fc43cb7 /test/Analysis/BasicAA | |
| parent | c3c58a199d0ab387af403eae7d9a5f136b3aa798 (diff) | |
| download | external_llvm-ba3172166d4b5e28c8f642543cfdf4fe9a0deffd.zip external_llvm-ba3172166d4b5e28c8f642543cfdf4fe9a0deffd.tar.gz external_llvm-ba3172166d4b5e28c8f642543cfdf4fe9a0deffd.tar.bz2 | |
change this to test for an alias result more directly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67046 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Analysis/BasicAA')
| -rw-r--r-- | test/Analysis/BasicAA/2009-03-04-GEPNoalias.ll | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/test/Analysis/BasicAA/2009-03-04-GEPNoalias.ll b/test/Analysis/BasicAA/2009-03-04-GEPNoalias.ll index 754d7a0..f3891ec 100644 --- a/test/Analysis/BasicAA/2009-03-04-GEPNoalias.ll +++ b/test/Analysis/BasicAA/2009-03-04-GEPNoalias.ll @@ -1,9 +1,13 @@ -; RUN: llvm-as < %s | opt -aa-eval -basicaa |& grep {0 no alias} +; RUN: llvm-as < %s | opt -basicaa -gvn | llvm-dis | grep load declare noalias i32* @noalias() -define void @test(i32 %x) { +define i32 @test(i32 %x) { %a = call i32* @noalias() + store i32 1, i32* %a %b = getelementptr i32* %a, i32 %x - ret void + store i32 2, i32* %b + + %c = load i32* %a + ret i32 %c } |
