mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-09 10:05:41 +00:00
fa341d919f
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145716 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
342 B
LLVM
18 lines
342 B
LLVM
; 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
|
|
}
|