llvm-6502/test/Analysis/BasicAA/modref.ll
2006-11-18 05:52:18 +00:00

13 lines
299 B
LLVM

; 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();
}