aboutsummaryrefslogtreecommitdiff
path: root/gcc/expr.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-03-09 07:07:37 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-03-09 07:07:37 +0000
commitb258008ada210e86bb07cf7c90de0989425b9742 (patch)
tree8fbed092954643cca2fd2a12cb3d30b57fdf70d3 /gcc/expr.c
parenta9b2ee887297d9ffd1c53f5b4aaccb6ab290517f (diff)
downloadgcc-b258008ada210e86bb07cf7c90de0989425b9742.zip
gcc-b258008ada210e86bb07cf7c90de0989425b9742.tar.gz
gcc-b258008ada210e86bb07cf7c90de0989425b9742.tar.bz2
* expr.c (expand_assignment): Remove orig_to_rtx.
From-SVN: r96164
Diffstat (limited to 'gcc/expr.c')
-rw-r--r--gcc/expr.c3
1 files changed, 1 insertions, 2 deletions
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)
{