diff options
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/sbitmap.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a6a1232..c17c1fb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-01-02 Steve Ellcey <sje@cup.hp.com> + + * sbitmap.c (HOST_BITS_PER_LONG_LONG): Change to + HOST_BITS_PER_LONGLONG + 2007-01-02 Manuel Lopez-Ibanez <manu@gcc.gnu.org> PR c/19977 diff --git a/gcc/sbitmap.c b/gcc/sbitmap.c index a32364f..a25bff4b 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" |
