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
Merge branch 'master' into msp430
[llvm/msp430.git]
/
test
/
Analysis
/
BasicAA
/
2003-09-19-LocalArgument.ll
blob
e2bb86dcb226adf3d79fbfe41bfc90bfd0b27994
1
; In this test, a local alloca cannot alias an incoming argument.
2
3
; RUN: llvm-as < %s | opt -gvn -instcombine | llvm-dis | not grep sub
4
5
define i32 @test(i32* %P) {
6
%X = alloca i32
7
%V1 = load i32* %P
8
store i32 0, i32* %X
9
%V2 = load i32* %P
10
%Diff = sub i32 %V1, %V2
11
ret i32 %Diff
12
}