diff options
author | thorpej <thorpej@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-31 02:38:38 +0000 |
---|---|---|
committer | thorpej <thorpej@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-31 02:38:38 +0000 |
commit | f149ef607ea37f901481365ae2c0b060b7b21bb9 (patch) | |
tree | ef6540fb45133986480af435ddb8271a8ecc9c3d /gcc/longlong.h | |
parent | a43fa0ddb94ba36fae8c8c29b2113d7db26b509a (diff) | |
download | gcc-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.h | 10 |
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__ */ |