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 | |
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
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/longlong.h | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3e6bc49bef7..88d6152d608 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 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__ */ |