From 83ab10c89d3903cebff6f049c34b2bc5b410111e Mon Sep 17 00:00:00 2001 From: manfred Date: Fri, 11 Dec 1998 08:27:07 +0000 Subject: � * cpplib.h (HOST_WIDE_INT): Get definition from "machmode.h" and don't try to define it here. * Makefile.in (cppmain.o): Depend on machmode.h. (cpplib.o): Likewise. (cpperror.o): Likewise. (cppexp.o): Likewise. (cppfiles.o): Likewise. (cpphash.o): Likewise. (cppalloc.o): Likewise. (fix-header.o): Likewise. (scan-decls.o): Likewise. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24260 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/cpplib.h | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) (limited to 'gcc/cpplib.h') diff --git a/gcc/cpplib.h b/gcc/cpplib.h index 65c286b7e18..390da10cb9b 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -668,22 +668,7 @@ typedef struct if_stack IF_STACK_FRAME; Watch out: on some crazy hosts `long' is shorter than `int'. */ #ifndef HOST_WIDE_INT -# if HAVE_INTTYPES_H -# include -# define HOST_WIDE_INT intmax_t -# else -# if (HOST_BITS_PER_LONG <= HOST_BITS_PER_INT \ - && HOST_BITS_PER_LONGLONG <= HOST_BITS_PER_INT) -# define HOST_WIDE_INT int -# else -# if (HOST_BITS_PER_LONGLONG <= HOST_BITS_PER_LONG \ - || ! (defined LONG_LONG_MAX || defined LLONG_MAX)) -# define HOST_WIDE_INT long -# else -# define HOST_WIDE_INT long long -# endif -# endif -# endif +#include "machmode.h" #endif extern void cpp_buf_line_and_col PARAMS((cpp_buffer *, long *, long *)); -- cgit v1.2.3