aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Thorpe <thorpej@wasabisystems.com>2002-05-31 02:38:38 +0000
committerJason Thorpe <thorpej@gcc.gnu.org>2002-05-31 02:38:38 +0000
commit6e2e5b6a7ebf112e94b1d7ebfcf12b8c981575af (patch)
treeef6540fb45133986480af435ddb8271a8ecc9c3d
parent00182e1edccfe503b6a28319215123d35b07af19 (diff)
downloadgcc-6e2e5b6a7ebf112e94b1d7ebfcf12b8c981575af.zip
gcc-6e2e5b6a7ebf112e94b1d7ebfcf12b8c981575af.tar.gz
gcc-6e2e5b6a7ebf112e94b1d7ebfcf12b8c981575af.tar.bz2
longlong.h (count_trailing_zeros): Add missing \, and clean up whitespace in __ns32000__ case.
* longlong.h (count_trailing_zeros): Add missing \, and clean up whitespace in __ns32000__ case. From-SVN: r54081
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/longlong.h10
2 files changed, 10 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 3e6bc49..88d6152 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/longlong.h b/gcc/longlong.h
index c8b9aee..28aef95 100644
--- a/gcc/longlong.h
+++ b/gcc/longlong.h
@@ -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__ */