llvm-6502/test/Feature/fold-fpcast.ll
2007-04-14 09:45:16 +00:00

20 lines
370 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | llvm-dis -o /dev/null -f &&
; RUN: llvm-upgrade < %s | llvm-as | llvm-dis | not grep bitcast
int %test1() {
ret int bitcast(float 3.7 to int)
}
float %test2() {
ret float bitcast(int 17 to float)
}
long %test3() {
ret long bitcast (double 3.1415926 to long)
}
double %test4() {
ret double bitcast (long 42 to double)
}