lex.c (cp_pragma_interface, [...]): Copy filenames with ggc_alloc_string.
authorAlexandre Oliva <oliva@lsd.ic.unicamp.br>
Wed, 15 Sep 1999 06:11:48 +0000 (06:11 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Wed, 15 Sep 1999 06:11:48 +0000 (06:11 +0000)
* lex.c (cp_pragma_interface, cp_pragma_implementation): Copy
filenames with ggc_alloc_string.

From-SVN: r29427

gcc/cp/ChangeLog
gcc/cp/lex.c

index 9697001144ae5f4fe496158876141f00b4853fa8..40d0fbfd4618625eab8c0236354ef1711ef507b5 100644 (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 
index 49dd728ba5ca264a9a94fac043335eb195e0ffa2..ae0d7e424f85d5716df297af5c08f211348be7dc 100644 (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