[llvm-commits] CVS: llvm/test/Regression/CodeGen/ARM/fcopysign.ll fpcmp_ueq.ll

Reid Spencer reid at x10sys.com
Fri Jan 12 21:07:29 PST 2007



Changes in directory llvm/test/Regression/CodeGen/ARM:

fcopysign.ll updated: 1.2 -> 1.3
fpcmp_ueq.ll updated: 1.1 -> 1.2
---
Log message:

For PR1043: http://llvm.org/PR1043 :
Bye, Bye Booly. Remove the use of the bool type from non-upgraded test
cases and from grep expressions. The parser doesn't accept it and the
asm writer doesn't produce it any more.


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

 fcopysign.ll |    4 ++--
 fpcmp_ueq.ll |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/test/Regression/CodeGen/ARM/fcopysign.ll
diff -u llvm/test/Regression/CodeGen/ARM/fcopysign.ll:1.2 llvm/test/Regression/CodeGen/ARM/fcopysign.ll:1.3
--- llvm/test/Regression/CodeGen/ARM/fcopysign.ll:1.2	Fri Jan  5 11:39:07 2007
+++ llvm/test/Regression/CodeGen/ARM/fcopysign.ll	Fri Jan 12 23:06:52 2007
@@ -2,7 +2,7 @@
 
 define csretcc void %__divsc3({ float, float }* %agg.result, float %a, float %b, float %c, float %d) {
 entry:
-	br bool false, label %bb, label %cond_next375
+	br i1 false, label %bb, label %cond_next375
 
 bb:		; preds = %entry
 	%tmp81 = tail call float %copysignf( float 0x7FF0000000000000, float %c )		; <float> [#uses=1]
@@ -16,6 +16,6 @@
 
 declare float %fabsf(float)
 
-declare bool %llvm.isunordered.f32(float, float)
+declare i1 %llvm.isunordered.f32(float, float)
 
 declare float %copysignf(float, float)


Index: llvm/test/Regression/CodeGen/ARM/fpcmp_ueq.ll
diff -u llvm/test/Regression/CodeGen/ARM/fpcmp_ueq.ll:1.1 llvm/test/Regression/CodeGen/ARM/fpcmp_ueq.ll:1.2
--- llvm/test/Regression/CodeGen/ARM/fpcmp_ueq.ll:1.1	Sun Dec 31 12:52:39 2006
+++ llvm/test/Regression/CodeGen/ARM/fpcmp_ueq.ll	Fri Jan 12 23:06:52 2007
@@ -5,7 +5,7 @@
 define i32 %f7(float %a, float %b) {
 entry:
     %tmp = fcmp ueq float %a,%b
-    %retval = select bool %tmp, i32 666, i32 42
+    %retval = select i1 %tmp, i32 666, i32 42
     ret i32 %retval
 }
 






More information about the llvm-commits mailing list