diff options
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 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; |