aboutsummaryrefslogtreecommitdiff
path: root/gcc/cpplib.h
diff options
context:
space:
mode:
authorManfred Hollstein <manfred@gcc.gnu.org>1998-12-11 08:27:07 +0000
committerManfred Hollstein <manfred@gcc.gnu.org>1998-12-11 08:27:07 +0000
commit5e36733735175e0cb805ba6064902092e46f9862 (patch)
tree7d31b99c284a4a2f2b9b6f69c70794d020b92cc2 /gcc/cpplib.h
parent56adfa4a5dcafd96badee9df4f7ab1ff8274b799 (diff)
downloadgcc-5e36733735175e0cb805ba6064902092e46f9862.zip
gcc-5e36733735175e0cb805ba6064902092e46f9862.tar.gz
gcc-5e36733735175e0cb805ba6064902092e46f9862.tar.bz2
cpplib.h (HOST_WIDE_INT): Get definition from "machmode.h" and don't try to define it here.
� * 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. From-SVN: r24260
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r--gcc/cpplib.h17
1 files changed, 1 insertions, 16 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h
index 65c286b..390da10 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 <inttypes.h>
-# 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 *));