This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Fix typo ins arm asm (PR35071)


The patch below fixes a typo in the arm floating point emulation libraries.

Applied to svn trunk.

Paul

2008-02-19  Paul Brook  <paul@codesourcery.com>

	PR target/35071
	* config/arm/ieee754-df.S: Fix do_it typo.
	* config/arm/ieee754-sf.S: Fix do_it typo.

Index: gcc/ChangeLog
===================================================================
--- gcc/ChangeLog	(revision 132395)
+++ gcc/ChangeLog	(working copy)
@@ -1,3 +1,9 @@
+2008-02-19  Paul Brook  <paul@codesourcery.com>
+
+	PR target/35071
+	* config/arm/ieee754-df.S: Fix do_it typo.
+	* config/arm/ieee754-sf.S: Fix do_it typo.
+
 2008-02-18  Jakub Jelinek  <jakub@redhat.com>
 
 	* BASE-VER: Set to 4.4.0.
Index: gcc/config/arm/ieee754-df.S
===================================================================
--- gcc/config/arm/ieee754-df.S	(revision 132395)
+++ gcc/config/arm/ieee754-df.S	(working copy)
@@ -526,7 +526,7 @@ ARM_FUNC_ALIAS aeabi_l2d floatdidf
 
 	orrs	r2, r0, r1
 #if !defined (__VFP_FP__) && !defined(__SOFTFP__)
-	do_itt	eq
+	do_it	eq, t
 	mvfeqd	f0, #0.0
 #else
 	do_it	eq
Index: gcc/config/arm/ieee754-sf.S
===================================================================
--- gcc/config/arm/ieee754-sf.S	(revision 132395)
+++ gcc/config/arm/ieee754-sf.S	(working copy)
@@ -331,7 +331,7 @@ ARM_FUNC_ALIAS aeabi_ul2f floatundisf
 
 	orrs	r2, r0, r1
 #if !defined (__VFP_FP__) && !defined(__SOFTFP__)
-	do_itt	eq
+	do_it	eq, t
 	mvfeqs	f0, #0.0
 #else
 	do_it	eq


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]