repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix an embarassing typo that resulted in llvm-gcc bootstrap miscompare
[llvm/avr.git]
/
test
/
Analysis
/
Andersens
/
modreftest.ll
blob
e0c2edc4c2378e0c4c8f9767bab63001723ccf2b
1
; RUN: opt < %s -anders-aa -gvn -instcombine -S \
2
; RUN: | grep {ret i1 true}
3
4
@G = internal global i32* null
5
declare i32 *@ext()
6
7
define i1 @bar() {
8
%V1 = load i32** @G
9
%X2 = call i32 *@ext()
10
%V2 = load i32** @G
11
store i32* %X2, i32** @G
12
13
%C = icmp eq i32* %V1, %V2
14
ret i1 %C
15
}