diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1999-02-25 20:40:21 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-02-25 20:40:21 +0000 |
commit | e915b770d9eca0fdfd5dd363daf70be12e543579 (patch) | |
tree | f93654398f80da81daa76ad8b689f48c4ebb6328 /gcc/cpplib.h | |
parent | 056cd572516e35aff4f58939bfcd27e9bdb54d6b (diff) | |
download | gcc-e915b770d9eca0fdfd5dd363daf70be12e543579.zip gcc-e915b770d9eca0fdfd5dd363daf70be12e543579.tar.gz gcc-e915b770d9eca0fdfd5dd363daf70be12e543579.tar.bz2 |
Makefile.in (cppmain.o, [...]): Don't depend on machmode.h.
* Makefile.in (cppmain.o, cpplib.o, cpphash.o, cppalloc.o,
cpperror.o, cppexp.o, cppfiles.o, cppinit.o, fix-header.o,
scan-decls.o): Don't depend on machmode.h.
* cppexp.c: Don't define CHAR_BIT or HOST_BITS_PER_WIDE_INT anymore.
Replace all instances of HOST_WIDE_INT with HOST_WIDEST_INT.
* cppfiles.c: Likewise.
* cpplib.c: Likewise.
* cpplib.h: Likewise. Also don't include machmode.h anymore.
From-SVN: r25446
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index 9ce1463..895aa87 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -666,13 +666,6 @@ struct if_stack { }; typedef struct if_stack IF_STACK_FRAME; -/* Find the largest host integer type and set its size and type. - Watch out: on some crazy hosts `long' is shorter than `int'. */ - -#ifndef HOST_WIDE_INT -#include "machmode.h" -#endif - extern void cpp_buf_line_and_col PARAMS((cpp_buffer *, long *, long *)); extern cpp_buffer* cpp_file_buffer PARAMS((cpp_reader *)); extern void cpp_define PARAMS ((cpp_reader *, unsigned char *)); @@ -699,7 +692,7 @@ extern void cpp_perror_with_name PROTO ((cpp_reader *, const char *)); extern void v_cpp_message PROTO ((cpp_reader *, int, const char *, va_list)); extern void cpp_grow_buffer PARAMS ((cpp_reader *, long)); -extern HOST_WIDE_INT cpp_parse_escape PARAMS ((cpp_reader *, char **, HOST_WIDE_INT)); +extern HOST_WIDEST_INT cpp_parse_escape PARAMS ((cpp_reader *, char **, HOST_WIDEST_INT)); extern cpp_buffer *cpp_push_buffer PARAMS ((cpp_reader *, unsigned char *, long)); extern cpp_buffer *cpp_pop_buffer PARAMS ((cpp_reader *)); |