ggc-common.c (ggc_mark_tree): Mark DECL_SOURCE_FILE and DECL_LIVE_RANGE_RTL.

* ggc-common.c (ggc_mark_tree): Mark DECL_SOURCE_FILE and
        DECL_LIVE_RANGE_RTL.

From-SVN: r29419
This commit is contained in:
Richard Henderson 1999-09-14 18:14:59 -07:00 committed by Richard Henderson
parent bf43101eb6
commit 4d9452a14a
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Tue Sep 14 18:14:03 1999 Richard Henderson <rth@cygnus.com>
* ggc-common.c (ggc_mark_tree): Mark DECL_SOURCE_FILE and
DECL_LIVE_RANGE_RTL.
Tue Sep 14 16:47:08 1999 Mark Mitchell <mark@codesourcery.com>
* except.c (expand_eh_region_start_for_decl): Use NOTE_EH_HANDLER,

View File

@ -321,6 +321,7 @@ ggc_mark_tree (t)
switch (TREE_CODE_CLASS (TREE_CODE (t)))
{
case 'd': /* A decl node. */
ggc_mark_string (DECL_SOURCE_FILE (t));
ggc_mark_tree (DECL_SIZE (t));
ggc_mark_tree (DECL_NAME (t));
ggc_mark_tree (DECL_CONTEXT (t));
@ -332,6 +333,7 @@ ggc_mark_tree (t)
ggc_mark_tree (DECL_SECTION_NAME (t));
ggc_mark_tree (DECL_MACHINE_ATTRIBUTES (t));
ggc_mark_rtx (DECL_RTL (t));
ggc_mark_rtx (DECL_LIVE_RANGE_RTL (t));
ggc_mark_tree (DECL_VINDEX (t));
lang_mark_tree (t);
break;