llvm-6502/test/Analysis/BasicAA/modref.ll
Reid Spencer 64fc3411b0 Fail even if opt doesn't print anything.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31844 91177308-0d34-0410-b5e6-96231b3b80d8
2006-11-18 06:08:21 +00:00

16 lines
441 B
LLVM

; A very rudimentary test on AliasAnalysis::getModRefInfo.
; RUN: llvm-as < %s | opt -print-all-alias-modref-info -aa-eval -disable-output
&&
; 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();
}