repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix a globalopt crash on two Adobe-C++ testcases that the recent
[llvm.git]
/
test
/
Transforms
/
InstCombine
/
2008-01-06-CastCrash.ll
blob
097a0ce849d05a2ab0eca24d90be9520bd11dced
1
; RUN: opt < %s -instcombine -disable-output
2
3
define <2 x i32> @f() {
4
ret <2 x i32> undef
5
}
6
7
define i32 @g() {
8
%x = call i32 bitcast (<2 x i32> ()* @f to i32 ()*)( ) ; <i32> [#uses=1]
9
ret i32 %x
10
}