summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Mips/2008-07-07-IntDoubleConvertions.ll
blob: 20de18a0164c868df0db5495812ce0fd4aed1f0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
; RUN: llc < %s -march=mips -o %t
; RUN: grep __floatsidf   %t | count 1
; RUN: grep __floatunsidf %t | count 1
; RUN: grep __fixdfsi %t | count 1
; RUN: grep __fixunsdfsi %t  | count 1

target datalayout = "e-p:32:32:32-i1:8:8-i8:8:32-i16:16:32-i32:32:32-i64:32:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64"
target triple = "mipsallegrexel-psp-elf"

define double @int2fp(i32 %a) nounwind {
entry:
	sitofp i32 %a to double		; <double>:0 [#uses=1]
	ret double %0
}

define double @uint2double(i32 %a) nounwind {
entry:
	uitofp i32 %a to double		; <double>:0 [#uses=1]
	ret double %0
}

define i32 @double2int(double %a) nounwind {
entry:
  fptosi double %a to i32   ; <i32>:0 [#uses=1]
  ret i32 %0
}

define i32 @double2uint(double %a) nounwind {
entry:
  fptoui double %a to i32   ; <i32>:0 [#uses=1]
  ret i32 %0
}

OpenPOWER on IntegriCloud