diff options
author | Richard Henderson <rth@redhat.com> | 2016-03-15 16:08:45 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2016-03-15 16:08:45 -0700 |
commit | 64567cfd1dbd592f00b724c67bdee86915d4c046 (patch) | |
tree | 62cdbfebb9f20c4f9f716b12f81b8599e8ba96a4 /libcpp | |
parent | 6585b2e2dd63bb2e1ccc1390a7a52970152cd34d (diff) | |
download | gcc-64567cfd1dbd592f00b724c67bdee86915d4c046.zip gcc-64567cfd1dbd592f00b724c67bdee86915d4c046.tar.gz gcc-64567cfd1dbd592f00b724c67bdee86915d4c046.tar.bz2 |
Fix compiling large files
* line-map.c (new_linemap): Make alloc_size a size_t.
From-SVN: r234239
Diffstat (limited to 'libcpp')
-rw-r--r-- | libcpp/ChangeLog | 4 | ||||
-rw-r--r-- | libcpp/line-map.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog index a2cb02f..89b582d 100644 --- a/libcpp/ChangeLog +++ b/libcpp/ChangeLog @@ -1,3 +1,7 @@ +2016-03-15 Richard Henderson <rth@redhat.com> + + * line-map.c (new_linemap): Make alloc_size a size_t. + 2016-03-14 Jason Merrill <jason@redhat.com> * expr.c (cpp_classify_number): Hex floats are new in C++1z. diff --git a/libcpp/line-map.c b/libcpp/line-map.c index 1fb634a..80d4e6b 100644 --- a/libcpp/line-map.c +++ b/libcpp/line-map.c @@ -376,7 +376,7 @@ new_linemap (struct line_maps *set, if (LINEMAPS_USED (set, macro_map_p) == LINEMAPS_ALLOCATED (set, macro_map_p)) { /* We ran out of allocated line maps. Let's allocate more. */ - unsigned alloc_size; + size_t alloc_size; /* Cast away extern "C" from the type of xrealloc. */ line_map_realloc reallocator = (set->reallocator |