diff options
author | sje <sje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-01-02 21:23:55 +0000 |
---|---|---|
committer | sje <sje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-01-02 21:23:55 +0000 |
commit | bf0e57980e12d7a5f542905bdbd143256473a88a (patch) | |
tree | e63db4df6ac06b6001a038dc505208ff613ddb68 /gcc/sbitmap.c | |
parent | d6f5f982f614172cc4d23c8372a4eb4b8266d18b (diff) | |
download | gcc-bf0e57980e12d7a5f542905bdbd143256473a88a.tar.gz |
* sbitmap.c (HOST_BITS_PER_LONG_LONG): Change to
HOST_BITS_PER_LONGLONG
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@120356 138bc75d-0d04-0410-961f-82ee72b054a4
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" |