summaryrefslogtreecommitdiff
path: root/gcc/longlong.h
diff options
context:
space:
mode:
authorthorpej <thorpej@138bc75d-0d04-0410-961f-82ee72b054a4>2002-05-31 02:38:38 +0000
committerthorpej <thorpej@138bc75d-0d04-0410-961f-82ee72b054a4>2002-05-31 02:38:38 +0000
commitf149ef607ea37f901481365ae2c0b060b7b21bb9 (patch)
treeef6540fb45133986480af435ddb8271a8ecc9c3d /gcc/longlong.h
parenta43fa0ddb94ba36fae8c8c29b2113d7db26b509a (diff)
downloadgcc-f149ef607ea37f901481365ae2c0b060b7b21bb9.tar.gz
* longlong.h (count_trailing_zeros): Add missing \, and clean up
whitespace in __ns32000__ case. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54081 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/longlong.h')
-rw-r--r--gcc/longlong.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/longlong.h b/gcc/longlong.h
index c8b9aee1337..28aef951a63 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__ */