Commit 0086427c by Richard Kenner

(store_field): Fix typo in last change; update TARGET addr.

From-SVN: r12142
parent 3a369acd
...@@ -3923,8 +3923,8 @@ store_field (target, bitsize, bitpos, mode, exp, value_mode, ...@@ -3923,8 +3923,8 @@ store_field (target, bitsize, bitpos, mode, exp, value_mode,
|| bitpos % BITS_PER_UNIT != 0) || bitpos % BITS_PER_UNIT != 0)
abort (); abort ();
temp = change_address (temp, VOIDmode, target = change_address (target, VOIDmode,
plus_constant (XEXP (temp, 0), plus_constant (XEXP (target, 0),
bitpos / BITS_PER_UNIT)); bitpos / BITS_PER_UNIT));
emit_block_move (target, temp, emit_block_move (target, temp,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment