diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-02-25 20:40:21 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-02-25 20:40:21 +0000 |
commit | 164e0f6632316fc4c2c223dcd0e19bbbd372450b (patch) | |
tree | f93654398f80da81daa76ad8b689f48c4ebb6328 /gcc/cppfiles.c | |
parent | d24d52c1743e7b095d874e6895e2d744b4f0c3d3 (diff) | |
download | ppe42-gcc-164e0f6632316fc4c2c223dcd0e19bbbd372450b.tar.gz ppe42-gcc-164e0f6632316fc4c2c223dcd0e19bbbd372450b.zip |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@25446 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cppfiles.c')
-rw-r--r-- | gcc/cppfiles.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cppfiles.c b/gcc/cppfiles.c index b43d280abd4..88a1e4d5c1f 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; |