summaryrefslogtreecommitdiff
path: root/test/Analysis/DSGraph/2005-03-24-Global-Arg-Alias.ll
blob: e79acd777b47fa2843a536e38d889205151ffd29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
; RUN: llvm-upgrade < %s | llvm-as | opt -ds-aa -load-vn -gcse | llvm-dis | grep 'load int\* %L'

%G = internal global int* null

int %caller(bool %P) {
  %L = alloca int
  call void %callee(bool %P, int* %L)

  ;; At this point, G could point to L, so we can't eliminate these operations.
  %GP = load int** %G
  store int 17, int* %L
  store int 18, int* %GP  ;; might clober L

  %A = load int* %L    ;; is not necessarily 17!
  ret int %A
}

internal void %callee(bool %Cond, int* %P) {
  br bool %Cond, label %T, label %F
T:
  store int* %P, int** %G
  ret void
F:
  ret void
}