summaryrefslogtreecommitdiff
path: root/test/Analysis/BasicAA/2008-12-09-GEP-IndicesAlias.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Analysis/BasicAA/2008-12-09-GEP-IndicesAlias.ll')
-rw-r--r--test/Analysis/BasicAA/2008-12-09-GEP-IndicesAlias.ll16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/Analysis/BasicAA/2008-12-09-GEP-IndicesAlias.ll b/test/Analysis/BasicAA/2008-12-09-GEP-IndicesAlias.ll
deleted file mode 100644
index aaf9061953e75..0000000000000
--- a/test/Analysis/BasicAA/2008-12-09-GEP-IndicesAlias.ll
+++ /dev/null
@@ -1,16 +0,0 @@
-; RUN: opt < %s -aa-eval -print-all-alias-modref-info -disable-output |& grep {MustAlias:.*%R,.*%r}
-; Make sure that basicaa thinks R and r are must aliases.
-
-define i32 @test(i8 * %P) {
-entry:
- %Q = bitcast i8* %P to {i32, i32}*
- %R = getelementptr {i32, i32}* %Q, i32 0, i32 1
- %S = load i32* %R
-
- %q = bitcast i8* %P to {i32, i32}*
- %r = getelementptr {i32, i32}* %q, i32 0, i32 1
- %s = load i32* %r
-
- %t = sub i32 %S, %s
- ret i32 %t
-}