summaryrefslogtreecommitdiff
path: root/test/Analysis/BasicAA/modref.ll
blob: acf439ff5086d09c8d09cff785658e38b64d21a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; 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();
}