Add a replacement for 2009-02-12-GEPNoalias.ll that works without -debug.

llvm-svn: 67011
This commit is contained in:
Nick Lewycky 2009-03-14 19:40:09 +00:00
parent 79975d5ffb
commit 8e0f9ac051
1 changed files with 9 additions and 0 deletions

View File

@ -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
}