You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.179
Former-commit-id: 67aa10e65b237e1c4537630979ee99ebe1374215
This commit is contained in:
parent
d6bde52373
commit
8625704ad8
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