aboutsummaryrefslogtreecommitdiff
path: root/gcc/cppfiles.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>1999-02-25 20:40:21 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>1999-02-25 20:40:21 +0000
commite915b770d9eca0fdfd5dd363daf70be12e543579 (patch)
treef93654398f80da81daa76ad8b689f48c4ebb6328 /gcc/cppfiles.c
parent056cd572516e35aff4f58939bfcd27e9bdb54d6b (diff)
downloadgcc-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/cppfiles.c')
-rw-r--r--gcc/cppfiles.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cppfiles.c b/gcc/cppfiles.c
index b43d280..88a1e4d 100644
--- a/gcc/cppfiles.c
+++ b/gcc/cppfiles.c
@@ -705,8 +705,8 @@ finclude (pfile, fd, ihash)
a single source file bigger than 4GB needs to rethink
their coding style.) */
st_size = (size_t) st.st_size;
- if ((unsigned HOST_WIDE_INT) st_size
- != (unsigned HOST_WIDE_INT) st.st_size)
+ if ((unsigned HOST_WIDEST_INT) st_size
+ != (unsigned HOST_WIDEST_INT) st.st_size)
{
cpp_error (pfile, "file `%s' is too large", ihash->name);
goto fail;