llvm-6502/test/Feature/fold-fpcast.ll
Dale Johannesen c2ec2baf3d Change all floating constants that are not exactly
representable to use hex format.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41722 91177308-0d34-0410-b5e6-96231b3b80d8
2007-09-05 17:50:36 +00:00

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)
}