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.
18 lines
342 B
18 lines
342 B
; RUN: llc -march=mips < %s | FileCheck %s
|
|
|
|
define i32 @fptoint(float %a) nounwind {
|
|
entry:
|
|
; CHECK: trunc.w.s
|
|
fptosi float %a to i32 ; <i32>:0 [#uses=1]
|
|
ret i32 %0
|
|
}
|
|
|
|
define i32 @fptouint(float %a) nounwind {
|
|
entry:
|
|
; CHECK: fptouint
|
|
; CHECK: trunc.w.s
|
|
; CHECK: trunc.w.s
|
|
fptoui float %a to i32 ; <i32>:0 [#uses=1]
|
|
ret i32 %0
|
|
}
|