diff options
Diffstat (limited to 'contrib/gcc/expr.c')
-rw-r--r-- | contrib/gcc/expr.c | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/contrib/gcc/expr.c b/contrib/gcc/expr.c index 94a28e9..2a13cd4 100644 --- a/contrib/gcc/expr.c +++ b/contrib/gcc/expr.c @@ -1,6 +1,6 @@ /* Convert tree expression to rtl instructions, for GNU compiler. Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, - 2000, 2001, 2002 Free Software Foundation, Inc. + 2000, 2001, 2002, 2003 Free Software Foundation, Inc. This file is part of GCC. @@ -3722,17 +3722,7 @@ expand_assignment (to, from, want_value, suggest_reg) DECL_RTX of the parent struct. Don't munge it. */ to_rtx = shallow_copy_rtx (to_rtx); - set_mem_attributes (to_rtx, to, 0); - - /* If we changed MEM_EXPR, that means we're now referencing - the COMPONENT_REF, which means that MEM_OFFSET must be - relative to that field. But we've not yet reflected BITPOS - in TO_RTX. This will be done in store_field. Adjust for - that by biasing MEM_OFFSET by -bitpos. */ - if (MEM_EXPR (to_rtx) != old_expr && MEM_OFFSET (to_rtx) - && (bitpos / BITS_PER_UNIT) != 0) - set_mem_offset (to_rtx, GEN_INT (INTVAL (MEM_OFFSET (to_rtx)) - - (bitpos / BITS_PER_UNIT))); + set_mem_attributes_minus_bitpos (to_rtx, to, 0, bitpos); } /* Deal with volatile and readonly fields. The former is only done @@ -7847,7 +7837,7 @@ expand_expr (exp, target, tmode, modifier) build (RDIV_EXPR, type, build_real (type, dconst1), TREE_OPERAND (exp, 1))), - target, tmode, unsignedp); + target, tmode, modifier); this_optab = sdiv_optab; goto binop; |