* config/fp-bit.h (CMPtype): Typedef to a word mode integer.
authorBen Elliston <bje@au.ibm.com>
Tue, 7 Mar 2006 23:41:00 +0000 (23:41 +0000)
committerBen Elliston <bje@gcc.gnu.org>
Tue, 7 Mar 2006 23:41:00 +0000 (10:41 +1100)
From-SVN: r111823

gcc/ChangeLog
gcc/config/fp-bit.h

index 61d6f59db4ae33a5d511c907f1e6376e91f173e6..e446ba1d915b56fb00178c38e160bc82c2eebee0 100644 (file)
@@ -1,3 +1,7 @@
+2006-03-08  Ben Elliston  <bje@au.ibm.com>
+
+       * config/fp-bit.h (CMPtype): Typedef to a word mode integer.
+
 2006-03-07  Aldy Hernandez  <aldyh@redhat.com>
 
        PR gomp/26238
index 5ee0279a3932e04c678fa77106610bf860b70acf..0f03f87ee1a769d85d9425d5f22ae6679dd72f7a 100644 (file)
@@ -107,9 +107,10 @@ typedef int DItype __attribute__ ((mode (DI)));
 typedef int TItype __attribute__ ((mode (TI)));
 #endif
 
-/* The type of the result of a fp compare */
+/* The type of the result of a floating point comparison.  This must
+   match `word_mode' in GCC for the target.  */
 #ifndef CMPtype
-#define CMPtype SItype
+typedef int CMPtype __attribute__ ((mode (word)));
 #endif
 
 typedef unsigned int UHItype __attribute__ ((mode (HI)));