You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.225
Former-commit-id: 10196d987d5fc5564b9d3b33b1fdf13190f4d0b5
This commit is contained in:
parent
32d52ae4ca
commit
f32dbaf0b2
34
external/llvm/test/CodeGen/Mips/2008-07-07-IntDoubleConvertions.ll
vendored
Normal file
34
external/llvm/test/CodeGen/Mips/2008-07-07-IntDoubleConvertions.ll
vendored
Normal file
@ -0,0 +1,34 @@
|
||||
; RUN: llc -march=mips -mattr=single-float < %s | FileCheck %s
|
||||
|
||||
define double @int2fp(i32 %a) nounwind {
|
||||
entry:
|
||||
; CHECK: int2fp
|
||||
; CHECK: __floatsidf
|
||||
sitofp i32 %a to double ; <double>:0 [#uses=1]
|
||||
ret double %0
|
||||
}
|
||||
|
||||
define double @uint2double(i32 %a) nounwind {
|
||||
entry:
|
||||
; CHECK: uint2double
|
||||
; CHECK: __floatunsidf
|
||||
uitofp i32 %a to double ; <double>:0 [#uses=1]
|
||||
ret double %0
|
||||
}
|
||||
|
||||
define i32 @double2int(double %a) nounwind {
|
||||
entry:
|
||||
; CHECK: double2int
|
||||
; CHECK: __fixdfsi
|
||||
fptosi double %a to i32 ; <i32>:0 [#uses=1]
|
||||
ret i32 %0
|
||||
}
|
||||
|
||||
define i32 @double2uint(double %a) nounwind {
|
||||
entry:
|
||||
; CHECK: double2uint
|
||||
; CHECK: __fixunsdfsi
|
||||
fptoui double %a to i32 ; <i32>:0 [#uses=1]
|
||||
ret i32 %0
|
||||
}
|
||||
|
Reference in New Issue
Block a user