blob: 863c2e957b64721bd4fdac301a558f579592d488 (
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
34
35
36
37
38
39
|
; RUN: llvm-as < %s | llc -march=arm &&
; RUN: llvm-as < %s | llc -march=arm | grep fcvtds &&
; RUN: llvm-as < %s | llc -march=arm | grep fcvtsd
float %f1(double %x) {
entry:
%tmp1 = cast double %x to float
ret float %tmp1
}
double %f2(float %x) {
entry:
%tmp1 = cast float %x to double
ret double %tmp1
}
int %f3(float %x) {
entry:
%tmp = cast float %x to int
ret int %tmp
}
int %f4(double %x) {
entry:
%tmp = cast double %x to int
ret int %tmp
}
uint %f5(float %x) {
entry:
%tmp = cast float %x to uint
ret uint %tmp
}
uint %f6(double %x) {
entry:
%tmp = cast double %x to uint
ret uint %tmp
}
|