diff options
Diffstat (limited to 'gcc/sbitmap.c')
| -rw-r--r-- | gcc/sbitmap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/sbitmap.c b/gcc/sbitmap.c index bc77d43a617..ceadd09edda 100644 --- a/gcc/sbitmap.c +++ b/gcc/sbitmap.c @@ -30,15 +30,15 @@ along with GCC; see the file COPYING3. If not see #if GCC_VERSION >= 3400 # if SBITMAP_ELT_BITS == HOST_BITS_PER_LONG -# define do_popcount(x) __builtin_popcountl(x) +# define do_popcount(x) __builtin_popcountl (x) # elif SBITMAP_ELT_BITS == HOST_BITS_PER_LONGLONG -# define do_popcount(x) __builtin_popcountll(x) +# define do_popcount(x) __builtin_popcountll (x) # else # error "internal error: sbitmap.h and hwint.h are inconsistent" # endif #else static unsigned long sbitmap_elt_popcount (SBITMAP_ELT_TYPE); -# define do_popcount(x) sbitmap_elt_popcount((x)) +# define do_popcount(x) sbitmap_elt_popcount (x) #endif typedef SBITMAP_ELT_TYPE *sbitmap_ptr; |

