aboutsummaryrefslogtreecommitdiffstats
path: root/test/Analysis/GlobalsModRef/aliastest.ll
blob: 4363d3b30fd76744e4fd2adccc653efece0a8f5b (plain)
1
2
3
4
5
6
7
8
9
; RUN: llvm-upgrade < %s | llvm-as | 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
}