projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Make sure we correctly unroll conversions between v2f64 and v2i32 on ARM.
[oota-llvm.git]
/
test
/
CodeGen
/
Mips
/
double2int.ll
1
; RUN: llc -march=mips < %s | FileCheck %s
2
3
define i32 @f1(double %d) nounwind readnone {
4
entry:
5
; CHECK: trunc.w.d $f{{[0-9]+}}, $f12
6
%conv = fptosi double %d to i32
7
ret i32 %conv
8
}