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
/
Transforms
/
InstCombine
/
2003-10-29-CallSiteResolve.ll
blob
cfe5df6d30a367bb7c8350d43e2b566c00747c40
1
; RUN: opt < %s -instcombine -disable-output
2
3
declare i32* @bar()
4
5
define float* @foo() {
6
%tmp.11 = invoke float* bitcast (i32* ()* @bar to float* ()*)( )
7
to label %invoke_cont unwind label %X ; <float*> [#uses=1]
8
9
invoke_cont: ; preds = %0
10
ret float* %tmp.11
11
12
X: ; preds = %0
13
ret float* null
14
}
15