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
This commit is contained in:
Alexandre Oliva 1999-09-15 06:11:48 +00:00 committed by Mark Mitchell
parent 9263e6d6cd
commit 354f0b0403
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
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>
* decl.c (build_target_expr): Set TREE_SIDE_EFFECTS on the

View File

@ -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