[llvm-commits] CVS: llvm/test/Integer/fold-fpcast_bt.ll

Reid Spencer reid at x10sys.com
Sat Apr 14 09:19:47 PDT 2007



Changes in directory llvm/test/Integer:

fold-fpcast_bt.ll updated: 1.2 -> 1.3
---
Log message:

FIx this test, thanks to llvm.exp


---
Diffs of the changes:  (+10 -10)

 fold-fpcast_bt.ll |   20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)


Index: llvm/test/Integer/fold-fpcast_bt.ll
diff -u llvm/test/Integer/fold-fpcast_bt.ll:1.2 llvm/test/Integer/fold-fpcast_bt.ll:1.3
--- llvm/test/Integer/fold-fpcast_bt.ll:1.2	Fri Jan 19 08:30:59 2007
+++ llvm/test/Integer/fold-fpcast_bt.ll	Sat Apr 14 11:19:26 2007
@@ -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)
 }






More information about the llvm-commits mailing list