FIx this test, thanks to llvm.exp
authorReid Spencer <rspencer@reidspencer.com>
Sat, 14 Apr 2007 16:19:26 +0000 (16:19 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Sat, 14 Apr 2007 16:19:26 +0000 (16:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35992 91177308-0d34-0410-b5e6-96231b3b80d8

test/Integer/fold-fpcast_bt.ll

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