Commit 385d4094 by Richard Henderson Committed by Richard Henderson

* c-decl.c (duplicate_decls): Conditionalize DECL_SAVED_TREE copy.

From-SVN: r47535
parent 998d7deb
2001-12-02 Richard Henderson <rth@redhat.com> 2001-12-02 Richard Henderson <rth@redhat.com>
* c-decl.c (duplicate_decls): Conditionalize DECL_SAVED_TREE copy.
2001-12-02 Richard Henderson <rth@redhat.com>
* rtl.h (mem_attrs): Rename decl to expr; adjust all users. * rtl.h (mem_attrs): Rename decl to expr; adjust all users.
(MEM_EXPR): Rename from MEM_DECL; adjust all users. (MEM_EXPR): Rename from MEM_DECL; adjust all users.
* emit-rtl.c (set_mem_expr): Rename from set_mem_decl. * emit-rtl.c (set_mem_expr): Rename from set_mem_decl.
......
...@@ -2019,9 +2019,11 @@ duplicate_decls (newdecl, olddecl, different_binding_level) ...@@ -2019,9 +2019,11 @@ duplicate_decls (newdecl, olddecl, different_binding_level)
DECL_INITIAL, so that we don't accidentally change function DECL_INITIAL, so that we don't accidentally change function
declarations into function definitions. */ declarations into function definitions. */
if (! different_binding_level) if (! different_binding_level)
DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl); {
DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
}
DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl); DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl);
DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl); DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
if (DECL_INLINE (newdecl)) if (DECL_INLINE (newdecl))
DECL_ABSTRACT_ORIGIN (newdecl) = DECL_ABSTRACT_ORIGIN (olddecl); DECL_ABSTRACT_ORIGIN (newdecl) = DECL_ABSTRACT_ORIGIN (olddecl);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment