From: Alexandre Oliva Date: Wed, 15 Sep 1999 06:11:48 +0000 (+0000) Subject: lex.c (cp_pragma_interface, [...]): Copy filenames with ggc_alloc_string. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=354f0b0403d1b6e19a9f23698589c148368607c8;p=gcc.git lex.c (cp_pragma_interface, [...]): Copy filenames with ggc_alloc_string. * lex.c (cp_pragma_interface, cp_pragma_implementation): Copy filenames with ggc_alloc_string. From-SVN: r29427 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 9697001144a..40d0fbfd461 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +1999-09-14 Alexandre Oliva + + * lex.c (cp_pragma_interface, cp_pragma_implementation): Copy + filenames with ggc_alloc_string. + 1999-09-14 Mark Mitchell * decl.c (build_target_expr): Set TREE_SIDE_EFFECTS on the diff --git a/gcc/cp/lex.c b/gcc/cp/lex.c index 49dd728ba5c..ae0d7e424f8 100644 --- a/gcc/cp/lex.c +++ b/gcc/cp/lex.c @@ -1219,7 +1219,7 @@ cp_pragma_interface (main_filename) /* Get default. */ impl_file_chain = (struct impl_files *) xmalloc (sizeof (struct impl_files)); - impl_file_chain->filename = filename; + impl_file_chain->filename = ggc_alloc_string (filename, -1); impl_file_chain->next = 0; #endif } @@ -1254,7 +1254,7 @@ cp_pragma_implementation (main_filename) if (ifiles == 0) { ifiles = (struct impl_files*) xmalloc (sizeof (struct impl_files)); - ifiles->filename = main_filename; + ifiles->filename = ggc_alloc_string (main_filename, -1); ifiles->next = impl_file_chain; impl_file_chain = ifiles; } @@ -1264,7 +1264,7 @@ cp_pragma_implementation (main_filename) || ! strcmp (main_filename, input_filename)) { impl_file_chain = (struct impl_files*) xmalloc (sizeof (struct impl_files)); - impl_file_chain->filename = main_filename; + impl_file_chain->filename = ggc_alloc_string (main_filename, -1); impl_file_chain->next = 0; } else