aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/Analysis/BasicAA/2009-03-04-GEPNoalias.ll10
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 754d7a096c..f3891ec75f 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
}