Commit 6e2e5b6a by Jason Thorpe Committed by Jason Thorpe

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
parent 00182e1e
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> 2002-05-31 Aldy Hernandez <aldyh@redhat.com>
* expr.c (expand_expr): Output partially zeroed out vectors with * expr.c (expand_expr): Output partially zeroed out vectors with
......
...@@ -764,11 +764,11 @@ UDItype __umulsidi3 (USItype, USItype); ...@@ -764,11 +764,11 @@ UDItype __umulsidi3 (USItype, USItype);
"g" ((USItype) (d))); \ "g" ((USItype) (d))); \
(r) = __xx.__i.__l; (q) = __xx.__i.__h; }) (r) = __xx.__i.__l; (q) = __xx.__i.__h; })
#define count_trailing_zeros(count,x) \ #define count_trailing_zeros(count,x) \
do { do { \
__asm__ ("ffsd %2,%0" \ __asm__ ("ffsd %2,%0" \
: "=r" ((USItype) (count)) \ : "=r" ((USItype) (count)) \
: "0" ((USItype) 0), \ : "0" ((USItype) 0), \
"r" ((USItype) (x))); \ "r" ((USItype) (x))); \
} while (0) } while (0)
#endif /* __ns32000__ */ #endif /* __ns32000__ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment