1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-25 05:52:53 +02:00
llvm-mirror/test/Integer/fold-fpcast_bt.ll
Zhou Sheng bb82bc11ae Cover non-byte-width BATs situation.
llvm-svn: 33356
2007-01-19 14:30:59 +00:00

34 lines
567 B
LLVM

; RUN: llvm-as < %s | llvm-dis | not grep bitcast
define i60 %test1() {
ret i60 fptoui(float 3.7 to i60)
}
define float %test2() {
ret float uitofp(i60 17 to float)
}
define i64 %test3() {
ret i64 bitcast (double 3.1415926 to i64)
}
define double %test4() {
ret double bitcast (i64 42 to double)
}
define i30 %test5() {
ret i30 fptoui(float 3.7 to i30)
}
define float %test6() {
ret float uitofp(i30 17 to float)
}
define i6 %test7() {
ret i6 bitcast (double 3.1415926 to i6)
}
define double %test8() {
ret double bitcast (i9 42 to double)
}