repo.or.cz
/
llvm
/
stm8.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Silence -Wunused-variable in release builds.
[llvm/stm8.git]
/
test
/
Analysis
/
BasicAA
/
2004-07-28-MustAliasbug.ll
blob
56e4ed05cefe6ad9291d3ea148701b0cc92372a9
1
; RUN: opt < %s -basicaa -dse -S | grep {store i32 0}
2
3
define void @test({i32,i32 }* %P) {
4
%Q = getelementptr {i32,i32}* %P, i32 1
5
%X = getelementptr {i32,i32}* %Q, i32 0, i32 1
6
%Y = getelementptr {i32,i32}* %Q, i32 1, i32 1
7
store i32 0, i32* %X
8
store i32 1, i32* %Y
9
ret void
10
}