forked from OSchip/llvm-project
change this to test for an alias result more directly.
llvm-svn: 67046
This commit is contained in:
parent
6caa9dd693
commit
d35d43dde8
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue