repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[InstCombine] Signed saturation patterns
[llvm-core.git]
/
test
/
CodeGen
/
X86
/
store-global-address.ll
blob
31bb0d59c9305037311814e5c23d74f869cf76f3
1
; RUN: llc < %s -mtriple=i686-- | grep movl | count 1
2
3
@dst = global i32 0 ; <i32*> [#uses=1]
4
@ptr = global i32* null ; <i32**> [#uses=1]
5
6
define void @test() {
7
store i32* @dst, i32** @ptr
8
ret void
9
}
10