summaryrefslogtreecommitdiffstats
path: root/gcc/scan.c
diff options
context:
space:
mode:
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>1999-09-05 03:49:52 +0000
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>1999-09-05 03:49:52 +0000
commit521dd5240f993a9c1636894bd241e9c197f5e6d8 (patch)
tree2c396fe4710d0e39b742d734bf2a7abf16783c92 /gcc/scan.c
parent6a5fcf30eadb9ee7c7e3479f9391a468ee1dae0a (diff)
downloadppe42-gcc-521dd5240f993a9c1636894bd241e9c197f5e6d8.tar.gz
ppe42-gcc-521dd5240f993a9c1636894bd241e9c197f5e6d8.zip
* Makefile.in (stor-layout.o): Depend on ggc.h.
(expr.o): Depend on ggc.h. (profile.o): Depend on ggc.h. (stor-layout.o): Depend on ggc.h. * emit-rtl.c (init_emit_once): Add gc roots. * expr.c: Include ggc.h. (emit_block_move): Add gc roots. (clear_storage): Likewise. * expr.h (init_stor_layout_once): New function. * profile.c: Include ggc.h. (init_arc_profiler): profiler_label is a root. * scan.c (make_sstring_space): Trust xrealloc to function correctly with first parameter NULL. * stor-layout.c: Include ggc.h. (set_sizetype): Add gc root. (init_stor_layout_once): New function. * toplev.c (compile_file): Call it. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29122 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/scan.c')
-rw-r--r--gcc/scan.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/scan.c b/gcc/scan.c
index 156cd0edb45..24dd6632f35 100644
--- a/gcc/scan.c
+++ b/gcc/scan.c
@@ -35,10 +35,7 @@ make_sstring_space (str, count)
if (new_size <= cur_size)
return;
- if (str->base == NULL)
- str->base = xmalloc (new_size);
- else
- str->base = xrealloc (str->base, new_size);
+ str->base = xrealloc (str->base, new_size);
str->ptr = str->base + cur_size;
str->limit = str->base + new_size;
}
OpenPOWER on IntegriCloud