You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
; RUN: llc -march=mips < %s | FileCheck %s
|
|
|
|
define i32 @f1(double %d) nounwind readnone {
|
|
entry:
|
|
; CHECK: trunc.w.d $f{{[0-9]+}}, $f12
|
|
%conv = fptosi double %d to i32
|
|
ret i32 %conv
|
|
}
|