repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[RISCV] Add shrinkwrap test cases showing gaps in current impl
[llvm-project.git]
/
llvm
/
test
/
CodeGen
/
X86
/
2009-06-05-sitofpCrash.ll
blob
bc19edd23da871125cf9915a47cc3f28b233d7c9
1
; RUN: llc < %s -mtriple=i686-- -mattr=+sse
2
; PR2598
3
4
define <2 x float> @a(<2 x i32> %i) nounwind {
5
%r = sitofp <2 x i32> %i to <2 x float>
6
ret <2 x float> %r
7
}
8
9
define <2 x i32> @b(<2 x float> %i) nounwind {
10
%r = fptosi <2 x float> %i to <2 x i32>
11
ret <2 x i32> %r
12
}
13