Commit ff9b5bd8 by Jeff Law

* expr.c (expand_assignment): Fix alignment parm in emit_block_move.

From-SVN: r10977
parent 1c3f2e00
......@@ -2806,7 +2806,7 @@ expand_assignment (to, from, want_value, suggest_reg)
if (GET_MODE (to_rtx) == BLKmode)
emit_block_move (to_rtx, value, expr_size (from),
TYPE_ALIGN (TREE_TYPE (from)) / BITS_PER_WORD);
TYPE_ALIGN (TREE_TYPE (from)) / BITS_PER_UNIT);
else
emit_move_insn (to_rtx, value);
preserve_temp_slots (to_rtx);
......
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