OSDN Git Service

* longlong.h (count_trailing_zeros): Add missing \, and clean up
authorthorpej <thorpej@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 31 May 2002 02:38:38 +0000 (02:38 +0000)
committerthorpej <thorpej@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 31 May 2002 02:38:38 +0000 (02:38 +0000)
whitespace in __ns32000__ case.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54081 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/longlong.h

index 3e6bc49..88d6152 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-31  Jason Thorpe  <thorpej@wasabisystems.com>
+
+       * longlong.h (count_trailing_zeros): Add missing \, and clean up
+       whitespace in __ns32000__ case.
+
 2002-05-31  Aldy Hernandez  <aldyh@redhat.com>
 
         * expr.c (expand_expr): Output partially zeroed out vectors with
index c8b9aee..28aef95 100644 (file)
@@ -764,11 +764,11 @@ UDItype __umulsidi3 (USItype, USItype);
             "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__ */