From b258008ada210e86bb07cf7c90de0989425b9742 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Wed, 9 Mar 2005 07:07:37 +0000 Subject: * expr.c (expand_assignment): Remove orig_to_rtx. From-SVN: r96164 --- gcc/ChangeLog | 2 ++ gcc/expr.c | 3 +-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 449c381..636cd6f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -4,6 +4,8 @@ * cfgrtl.c (cfg_layout_merge_blocks): Remove new_e. + * expr.c (expand_assignment): Remove orig_to_rtx. + 2005-03-08 Jeff Law * tree-cfg.c (cleanup_control_flow): If removal of a computed diff --git a/gcc/expr.c b/gcc/expr.c index c2c9ffe..07efe70 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -3824,7 +3824,6 @@ expand_assignment (tree to, tree from) { enum machine_mode mode1; HOST_WIDE_INT bitsize, bitpos; - rtx orig_to_rtx; tree offset; int unsignedp; int volatilep = 0; @@ -3837,7 +3836,7 @@ expand_assignment (tree to, tree from) /* If we are going to use store_bit_field and extract_bit_field, make sure to_rtx will be safe for multiple use. */ - orig_to_rtx = to_rtx = expand_expr (tem, NULL_RTX, VOIDmode, 0); + to_rtx = expand_expr (tem, NULL_RTX, VOIDmode, 0); if (offset != 0) { -- cgit v1.1