mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Add a simple test to make sure getModRefInfo is 1/2 way sane.
llvm-svn: 31842
This commit is contained in:
parent
c7a1e60e44
commit
b610ada904
12
test/Regression/Analysis/BasicAA/modref.ll
Normal file
12
test/Regression/Analysis/BasicAA/modref.ll
Normal file
@ -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();
|
||||
}
|
Loading…
Reference in New Issue
Block a user