summaryrefslogtreecommitdiff
path: root/test/Analysis
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-11-18 05:52:18 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-11-18 05:52:18 +0000
commit1faa5491d2b5d982766376dd550ae39c68633860 (patch)
tree08d395b68df369de62e57e9351c0ab50281891b3 /test/Analysis
parent967413fa20ba0941e44954257634fce8f3b84f00 (diff)
downloadllvm-1faa5491d2b5d982766376dd550ae39c68633860.tar.gz
llvm-1faa5491d2b5d982766376dd550ae39c68633860.tar.bz2
llvm-1faa5491d2b5d982766376dd550ae39c68633860.tar.xz
Add a simple test to make sure getModRefInfo is 1/2 way sane.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31842 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Analysis')
-rw-r--r--test/Analysis/BasicAA/modref.ll12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/Analysis/BasicAA/modref.ll b/test/Analysis/BasicAA/modref.ll
new file mode 100644
index 0000000000..aaf0b03553
--- /dev/null
+++ b/test/Analysis/BasicAA/modref.ll
@@ -0,0 +1,12 @@
+; RUN: llvm-as < %s | opt -print-all-alias-modref-info -aa-eval -disable-output 2>&1 | not grep NoModRef
+
+int %callee() {
+ %X = alloca struct { int, int }
+ %Y = int* getelementptr struct { int, int }*, uint 1
+ %Z = int load struct { int, int }*
+ ret %Z
+}
+
+int %caller() {
+ %X = int callee();
+}