repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Handle logical shift right (at least I hope so :) )
[llvm/msp430.git]
/
test
/
Analysis
/
GlobalsModRef
/
aliastest.ll
blob
5ea90fe9a3e67bd19748fe4ef50f9e81b5935476
1
; RUN: llvm-as < %s | opt -globalsmodref-aa -gvn | llvm-dis | not grep load
2
@X = internal global i32 4 ; <i32*> [#uses=1]
3
4
define i32 @test(i32* %P) {
5
store i32 7, i32* %P
6
store i32 12, i32* @X
7
%V = load i32* %P ; <i32> [#uses=1]
8
ret i32 %V
9
}