diff options
author | Jason Thorpe <thorpej@wasabisystems.com> | 2002-05-31 02:38:38 +0000 |
---|---|---|
committer | Jason Thorpe <thorpej@gcc.gnu.org> | 2002-05-31 02:38:38 +0000 |
commit | 6e2e5b6a7ebf112e94b1d7ebfcf12b8c981575af (patch) | |
tree | ef6540fb45133986480af435ddb8271a8ecc9c3d /gcc/longlong.h | |
parent | 00182e1edccfe503b6a28319215123d35b07af19 (diff) | |
download | gcc-6e2e5b6a7ebf112e94b1d7ebfcf12b8c981575af.zip gcc-6e2e5b6a7ebf112e94b1d7ebfcf12b8c981575af.tar.gz gcc-6e2e5b6a7ebf112e94b1d7ebfcf12b8c981575af.tar.bz2 |
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
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 c8b9aee..28aef95 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__ */ |