aboutsummaryrefslogtreecommitdiffstats
path: root/test/Analysis/Andersens/modreftest.ll
blob: e0c2edc4c2378e0c4c8f9767bab63001723ccf2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; RUN: opt < %s -anders-aa -gvn -instcombine -S \
; RUN: | grep {ret i1 true}

@G = internal global i32* null
declare i32 *@ext()

define i1 @bar() {
  %V1 = load i32** @G
  %X2 = call i32 *@ext()
  %V2 = load i32** @G
  store i32* %X2, i32** @G

  %C = icmp eq i32* %V1, %V2
  ret i1 %C
}