From: Nick Lewycky Date: Sat, 14 Mar 2009 19:40:09 +0000 (+0000) Subject: Add a replacement for 2009-02-12-GEPNoalias.ll that works without -debug. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b24e6c4dd39a596ff55bdc8002895ab35115bd23;p=oota-llvm.git 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 --- 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 00000000000..754d7a096c4 --- /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 +}