diff options
| author | Nick Lewycky <nicholas@mxc.ca> | 2009-03-14 19:40:09 +0000 |
|---|---|---|
| committer | Nick Lewycky <nicholas@mxc.ca> | 2009-03-14 19:40:09 +0000 |
| commit | 778081a49dbbd1150b2f0de8b82b3d2dab4634e3 (patch) | |
| tree | 17425acf001446e170fd54de843998333e0ef0fb /test/Analysis/BasicAA | |
| parent | 4e0937ab13bd729265523fc1185f423f71bce702 (diff) | |
| download | external_llvm-778081a49dbbd1150b2f0de8b82b3d2dab4634e3.zip external_llvm-778081a49dbbd1150b2f0de8b82b3d2dab4634e3.tar.gz external_llvm-778081a49dbbd1150b2f0de8b82b3d2dab4634e3.tar.bz2 | |
Add a replacement for 2009-02-12-GEPNoalias.ll that works without -debug.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67011 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Analysis/BasicAA')
| -rw-r--r-- | test/Analysis/BasicAA/2009-03-04-GEPNoalias.ll | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/Analysis/BasicAA/2009-03-04-GEPNoalias.ll b/test/Analysis/BasicAA/2009-03-04-GEPNoalias.ll new file mode 100644 index 0000000..754d7a0 --- /dev/null +++ b/test/Analysis/BasicAA/2009-03-04-GEPNoalias.ll @@ -0,0 +1,9 @@ +; RUN: llvm-as < %s | opt -aa-eval -basicaa |& grep {0 no alias} + +declare noalias i32* @noalias() + +define void @test(i32 %x) { + %a = call i32* @noalias() + %b = getelementptr i32* %a, i32 %x + ret void +} |
