aboutsummaryrefslogtreecommitdiffstats
path: root/test/Analysis/GlobalsModRef/aliastest.ll
blob: 19def38595329e0775fb14b825b8d733ed671c29 (plain)
1
2
3
4
5
6
7
8
9
; RUN: llvm-as < %s | opt -globalsmodref-aa -load-vn -gcse | llvm-dis | not grep load
%X = internal global int 4

int %test(int *%P) {
  store int 7, int* %P
  store int 12,  int* %X   ;; cannot alias P, X's addr isn't taken
  %V = load int* %P
  ret int %V
}