blob: 0ce776dbf85117cfc5f2da79e6052af7bfc80cc5 (
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
|
; RUN: llvm-as < %s | llvm-dis | FileCheck %s
; CHECK-NOT: bitcast
define i60 @test1() {
ret i60 fptoui(float 0x400D9999A0000000 to i60)
}
define float @test2() {
ret float uitofp(i60 17 to float)
}
define i64 @test3() {
ret i64 bitcast (double 0x400921FB4D12D84A to i64)
}
define double @test4() {
ret double bitcast (i64 42 to double)
}
define i30 @test5() {
ret i30 fptoui(float 0x400D9999A0000000 to i30)
}
define float @test6() {
ret float uitofp(i30 17 to float)
}
define i64 @test7() {
ret i64 bitcast (double 0x400921FB4D12D84A to i64)
}
define double @test8() {
ret double bitcast (i64 42 to double)
}
|