diff options
author | Steve Ellcey <sje@cup.hp.com> | 2007-01-02 21:23:55 +0000 |
---|---|---|
committer | Steve Ellcey <sje@gcc.gnu.org> | 2007-01-02 21:23:55 +0000 |
commit | a063525a3adacb25051f4d82caf6b416a2a52b7b (patch) | |
tree | e63db4df6ac06b6001a038dc505208ff613ddb68 /gcc/sbitmap.c | |
parent | b405ac807c267bea1ac27db96cafb5ddf6d68a0b (diff) | |
download | gcc-a063525a3adacb25051f4d82caf6b416a2a52b7b.tar.gz |
sbitmap.c (HOST_BITS_PER_LONG_LONG): Change to HOST_BITS_PER_LONGLONG
* sbitmap.c (HOST_BITS_PER_LONG_LONG): Change to
HOST_BITS_PER_LONGLONG
From-SVN: r120356
Diffstat (limited to 'gcc/sbitmap.c')
-rw-r--r-- | gcc/sbitmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/sbitmap.c b/gcc/sbitmap.c index a32364f0f7e..a25bff4ba94 100644 --- a/gcc/sbitmap.c +++ b/gcc/sbitmap.c @@ -31,7 +31,7 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA #if GCC_VERSION >= 3400 #if HOST_BITS_PER_WIDEST_FAST_INT == HOST_BITS_PER_LONG #define do_popcount(x) __builtin_popcountl(x) -#elif HOST_BITS_PER_WIDEST_FAST_INT == HOST_BITS_PER_LONG_LONG +#elif HOST_BITS_PER_WIDEST_FAST_INT == HOST_BITS_PER_LONGLONG #define do_popcount(x) __builtin_popcountll(x) #else #error "internal error: sbitmap.h and hwint.h are inconsistent" |