mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-03 14:08:57 +00:00
f89532f8f6
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131927 91177308-0d34-0410-b5e6-96231b3b80d8
9 lines
197 B
LLVM
9 lines
197 B
LLVM
; RUN: llc -march=mips -mcpu=4ke < %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
|
|
}
|