]> gcc.gnu.org Git - gcc.git/commitdiff
rest_of_compilation
authorJason Merrill <merrill@gnu.org>
Sat, 12 Oct 1996 01:34:08 +0000 (01:34 +0000)
committerJason Merrill <merrill@gnu.org>
Sat, 12 Oct 1996 01:34:08 +0000 (01:34 +0000)
From-SVN: r12956

gcc/toplev.c

index 27163944685f603724dd2ba67f7a8d2dab71585d..81c14bfc2bf90be0a5b73bedc5ed596ad91e43c2 100644 (file)
@@ -3398,9 +3398,11 @@ rest_of_compilation (decl)
      the copy, but the original is unchanged.  */
 
   if (saved_block_tree != 0)
-    DECL_INITIAL (decl) = saved_block_tree;
-  if (saved_arguments != 0)
-    DECL_ARGUMENTS (decl) = saved_arguments;
+    {
+      DECL_INITIAL (decl) = saved_block_tree;
+      DECL_ARGUMENTS (decl) = saved_arguments;
+      DECL_ABSTRACT_ORIGIN (decl) = NULL_TREE;
+    }
 
   reload_completed = 0;
 
This page took 0.065553 seconds and 5 git commands to generate.