mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
f9ca7b6094
representable to use hex format. llvm-svn: 41722
19 lines
329 B
LLVM
19 lines
329 B
LLVM
; RUN: llvm-upgrade < %s | llvm-as | llvm-dis | not grep bitcast
|
|
|
|
int %test1() {
|
|
ret int bitcast(float 0x400D9999A0000000 to int)
|
|
}
|
|
|
|
float %test2() {
|
|
ret float bitcast(int 17 to float)
|
|
}
|
|
|
|
long %test3() {
|
|
ret long bitcast (double 0x400921FB4D12D84A to long)
|
|
}
|
|
|
|
double %test4() {
|
|
ret double bitcast (long 42 to double)
|
|
}
|
|
|