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
Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
[llvm/avr.git]
/
test
/
Analysis
/
Andersens
/
2008-03-19-External.ll
blob
a9731037669bc99e8fc49d5a41ea42e2cf2f2fca
1
; RUN: opt < %s -anders-aa -gvn -S | not grep undef
2
; PR2160
3
4
declare void @f(i32*)
5
6
define i32 @g() {
7
entry:
8
%tmp = alloca i32 ; <i32*> [#uses=2]
9
call void @f( i32* %tmp )
10
%tmp2 = load i32* %tmp ; <i32> [#uses=1]
11
ret i32 %tmp2
12
}