diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-03-09 07:07:37 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-03-09 07:07:37 +0000 |
commit | b258008ada210e86bb07cf7c90de0989425b9742 (patch) | |
tree | 8fbed092954643cca2fd2a12cb3d30b57fdf70d3 /gcc/expr.c | |
parent | a9b2ee887297d9ffd1c53f5b4aaccb6ab290517f (diff) | |
download | gcc-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.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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) { |