Commit 354f0b04 by Alexandre Oliva Committed by Mark Mitchell

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
parent 9263e6d6
1999-09-14 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
* lex.c (cp_pragma_interface, cp_pragma_implementation): Copy
filenames with ggc_alloc_string.
1999-09-14 Mark Mitchell <mark@codesourcery.com> 1999-09-14 Mark Mitchell <mark@codesourcery.com>
* decl.c (build_target_expr): Set TREE_SIDE_EFFECTS on the * decl.c (build_target_expr): Set TREE_SIDE_EFFECTS on the
......
...@@ -1219,7 +1219,7 @@ cp_pragma_interface (main_filename) ...@@ -1219,7 +1219,7 @@ cp_pragma_interface (main_filename)
/* Get default. */ /* Get default. */
impl_file_chain impl_file_chain
= (struct impl_files *) xmalloc (sizeof (struct impl_files)); = (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; impl_file_chain->next = 0;
#endif #endif
} }
...@@ -1254,7 +1254,7 @@ cp_pragma_implementation (main_filename) ...@@ -1254,7 +1254,7 @@ cp_pragma_implementation (main_filename)
if (ifiles == 0) if (ifiles == 0)
{ {
ifiles = (struct impl_files*) xmalloc (sizeof (struct impl_files)); 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; ifiles->next = impl_file_chain;
impl_file_chain = ifiles; impl_file_chain = ifiles;
} }
...@@ -1264,7 +1264,7 @@ cp_pragma_implementation (main_filename) ...@@ -1264,7 +1264,7 @@ cp_pragma_implementation (main_filename)
|| ! strcmp (main_filename, input_filename)) || ! strcmp (main_filename, input_filename))
{ {
impl_file_chain = (struct impl_files*) xmalloc (sizeof (struct impl_files)); 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; impl_file_chain->next = 0;
} }
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment