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 | |
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
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | 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 <law@redhat.com> * tree-cfg.c (cleanup_control_flow): If removal of a computed @@ -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) { |