From 964b104aba78fdc347d4b9550707653076820b62 Mon Sep 17 00:00:00 2001 From: Douglas B Rupp Date: Wed, 20 Nov 2002 21:41:19 +0000 Subject: [PATCH] * hwint.h (HAVE___INT64): Fix typo (was HAVE__INT64). From-SVN: r59316 --- gcc/ChangeLog | 4 ++++ gcc/hwint.h | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 31768edd41e..34903808fc9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-11-20 Douglas B Rupp + + * hwint.h (HAVE___INT64): Fix typo (was HAVE__INT64). + 2002-11-20 DJ Delorie * config/stormy16/stormy16.c (s16builtins, 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 -- 2.30.2