Commit 8a0aa06e by Richard Henderson

* expmed.c (make_tree): Don't use SET_DECL_RTL.

From-SVN: r84023
parent 5e91e92e
2004-07-02 Richard Henderson <rth@redhat.com>
* expmed.c (make_tree): Don't use SET_DECL_RTL.
2004-07-02 Steven Bosscher <stevenb@suse.de>
* tree-flow.h (bb_ann_d): Remove ephi_nodes field.
......
......@@ -4432,7 +4432,9 @@ make_tree (tree type, rtx x)
if (POINTER_TYPE_P (type))
x = convert_memory_address (TYPE_MODE (type), x);
SET_DECL_RTL (t, x);
/* Note that we do *not* use SET_DECL_RTL here, because we do not
want set_decl_rtl to go adjusting REG_ATTRS for this temporary. */
t->decl.rtl = x;
return t;
}
......
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