From: Jason Thorpe Date: Fri, 31 May 2002 02:38:38 +0000 (+0000) Subject: longlong.h (count_trailing_zeros): Add missing \, and clean up whitespace in __ns3200... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6e2e5b6a7ebf112e94b1d7ebfcf12b8c981575af;p=gcc.git 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 --- 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 + + * longlong.h (count_trailing_zeros): Add missing \, and clean up + whitespace in __ns32000__ case. + 2002-05-31 Aldy Hernandez * 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__ */