From 8a0aa06e00c3f8ecbabf27a810951b9a07e2a495 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Fri, 2 Jul 2004 10:32:23 -0700 Subject: * expmed.c (make_tree): Don't use SET_DECL_RTL. From-SVN: r84023 --- gcc/expmed.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gcc/expmed.c') diff --git a/gcc/expmed.c b/gcc/expmed.c index 1dbad8679eb..ad1d88367da 100644 --- a/gcc/expmed.c +++ b/gcc/expmed.c @@ -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; } -- cgit v1.2.1