diff options
author | rupp <rupp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-11-20 21:41:19 +0000 |
---|---|---|
committer | rupp <rupp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-11-20 21:41:19 +0000 |
commit | 2e4dc2eaf2a7fccf0df8e5005f25b7e5226e2d15 (patch) | |
tree | 066c211d997f0d572039dea95ada56a13dc6829c /gcc/hwint.h | |
parent | d5f4db04fc9571c1308786e0299fb962636e8765 (diff) | |
download | gcc-2e4dc2eaf2a7fccf0df8e5005f25b7e5226e2d15.tar.gz |
* hwint.h (HAVE___INT64): Fix typo (was HAVE__INT64).
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@59316 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/hwint.h')
-rw-r--r-- | gcc/hwint.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/hwint.h b/gcc/hwint.h index 2c143799018..6d645a00ea7 100644 --- a/gcc/hwint.h +++ b/gcc/hwint.h @@ -1,5 +1,5 @@ /* HOST_WIDE_INT definitions for the GNU compiler. - Copyright (C) 1998 Free Software Foundation, Inc. + Copyright (C) 1998, 2002 Free Software Foundation, Inc. This file is part of GCC. @@ -18,7 +18,7 @@ #ifdef HAVE_LONG_LONG # define HOST_BITS_PER_LONGLONG (CHAR_BIT * SIZEOF_LONG_LONG) #else -#ifdef HAVE__INT64 +#ifdef HAVE___INT64 # define HOST_BITS_PER_LONGLONG (CHAR_BIT * SIZEOF___INT64) #else /* If we're here and we're GCC, assume this is stage 2+ of a bootstrap |