[PATCH] Fix missing \ in longlong.h for ns32k

Jason R Thorpe thorpej@wasabisystems.com
Thu May 30 21:22:00 GMT 2002


Checked in as an obvious fix.

        * longlong.h (count_trailing_zeros): Add missing \, and clean up
        whitespace in __ns32000__ case.

-- 
        -- Jason R. Thorpe <thorpej@wasabisystems.com>
-------------- next part --------------
Index: longlong.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/longlong.h,v
retrieving revision 1.27
diff -u -r1.27 longlong.h
--- longlong.h	9 Feb 2002 03:08:05 -0000	1.27
+++ longlong.h	31 May 2002 02:35:02 -0000
@@ -764,11 +764,11 @@
 	     "g" ((USItype) (d)));					\
   (r) = __xx.__i.__l; (q) = __xx.__i.__h; })
 #define count_trailing_zeros(count,x) \
-  do {
-    __asm__ ("ffsd     %2,%0"                                          \
-            : "=r" ((USItype) (count))                                 \
-            : "0" ((USItype) 0),                                       \
-              "r" ((USItype) (x)));                                    \
+  do {									\
+    __asm__ ("ffsd     %2,%0"						\
+            : "=r" ((USItype) (count))					\
+            : "0" ((USItype) 0),					\
+              "r" ((USItype) (x)));					\
   } while (0)
 #endif /* __ns32000__ */
 


More information about the Gcc-patches mailing list