1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

FIx this test, thanks to llvm.exp

llvm-svn: 35992
This commit is contained in:
Reid Spencer 2007-04-14 16:19:26 +00:00
parent 489c9a2006
commit e946685d0b

View File

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