aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMark Mitchell <mmitchel@gcc.gnu.org>1999-09-04 20:44:51 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>1999-09-04 20:44:51 +0000
commit6c7c62c6375e8fc0ea2c6d6da475db40d06191e9 (patch)
tree0cbdbfd003a415d56ed75cea51e7b7cf05836358 /gcc
parenta2f196e089cbe531405483707c1bf89466473da6 (diff)
downloadgcc-6c7c62c6375e8fc0ea2c6d6da475db40d06191e9.zip
gcc-6c7c62c6375e8fc0ea2c6d6da475db40d06191e9.tar.gz
gcc-6c7c62c6375e8fc0ea2c6d6da475db40d06191e9.tar.bz2
Make-lang.in (cc1plus): Depend on $(GGC).
* Make-lang.in (cc1plus): Depend on $(GGC). * Makefile.in (OBJS): Add ggc-simple.o. (OBJDEPS): Likewise. * cp-tree.h (language_function): Rename members to `x_' versions; we now have x_named_labels, x_ctor_label, x_dtor_label, x_base_init_list, x_member_init_list, x_base_init_expr, x_current_class_ptr, x_current_class_ref, x_last_tree, x_last_expr_type, x_last_dtor_insn, x_last_parm_cleanup_insn, and x_result_rtx. (dtor_label, ctor_label, current_base_init_list, current_member_init_list, base_init_expr, current_class_ptr, current_class_ref, last_tree, last_expr_type): Adjust accordingly. * decl.c: Include ggc.h. (last_dtor_insn): Adjust to use x_ names. (last_parm_cleanup_insn): Likewise. (original_result_rtx): Likewise. (named_labels): Likewise. (mark_binding_level): New function. (mark_cp_function_context): Likewise. (mark_false_label_stack): Likewise. (lang_mark_tree): Likewise. (lang_cleanup_tree): Likewise. From-SVN: r29109
Diffstat (limited to 'gcc')
-rw-r--r--gcc/cp/ChangeLog25
1 files changed, 25 insertions, 0 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index d177181..71df8de 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,28 @@
+1999-09-04 Mark Mitchell <mark@codesourcery.com>
+
+ * Make-lang.in (cc1plus): Depend on $(GGC).
+ * Makefile.in (OBJS): Add ggc-simple.o.
+ (OBJDEPS): Likewise.
+ * cp-tree.h (language_function): Rename members to `x_' versions;
+ we now have x_named_labels, x_ctor_label, x_dtor_label,
+ x_base_init_list, x_member_init_list, x_base_init_expr,
+ x_current_class_ptr, x_current_class_ref, x_last_tree,
+ x_last_expr_type, x_last_dtor_insn, x_last_parm_cleanup_insn, and
+ x_result_rtx.
+ (dtor_label, ctor_label, current_base_init_list,
+ current_member_init_list, base_init_expr, current_class_ptr,
+ current_class_ref, last_tree, last_expr_type): Adjust accordingly.
+ * decl.c: Include ggc.h.
+ (last_dtor_insn): Adjust to use x_ names.
+ (last_parm_cleanup_insn): Likewise.
+ (original_result_rtx): Likewise.
+ (named_labels): Likewise.
+ (mark_binding_level): New function.
+ (mark_cp_function_context): Likewise.
+ (mark_false_label_stack): Likewise.
+ (lang_mark_tree): Likewise.
+ (lang_cleanup_tree): Likewise.
+
1999-09-03 Mark Mitchell <mark@codesourcery.com>
* Makefile.in (CXX_TREE_H): Include function.h.