blob: e692005feeec2c2dc0c6ef8b770f566dedebf7ed (
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
40
41
42
43
44
45
46
47
48
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=c | \
; RUN: grep __BITCAST | count 14
int %test1(float %F) {
%X = bitcast float %F to int
ret int %X
}
float %test2(int %I) {
%X = bitcast int %I to float
ret float %X
}
long %test3(double %D) {
%X = bitcast double %D to long
ret long %X
}
double %test4(long %L) {
%X = bitcast long %L to double
ret double %X
}
double %test5(double %D) {
%X = bitcast double %D to double
%Y = add double %X, 2.0
%Z = bitcast double %Y to long
%res = bitcast long %Z to double
ret double %res
}
float %test6(float %F) {
%X = bitcast float %F to float
%Y = add float %X, 2.0
%Z = bitcast float %Y to int
%res = bitcast int %Z to float
ret float %res
}
int %main(int %argc, sbyte** %argv) {
%a = call int %test1(float 0x400921FB40000000)
%b = call float %test2(int %a)
%c = call long %test3(double 0x400921FB4D12D84A)
%d = call double %test4(long %c)
%e = call double %test5(double 7.0)
%f = call float %test6(float 7.0)
ret int %a
}
|