diff options
author | Jeff Law <law@gcc.gnu.org> | 1996-01-14 18:34:36 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1996-01-14 18:34:36 -0700 |
commit | ff9b5bd87cd73e1ac1a84c290c071b373148ab37 (patch) | |
tree | 740e780aaacc6eeb8671fd43dd1abab367127f5d /gcc | |
parent | 1c3f2e007c3370684fcc142c565bab1dc2f0eb34 (diff) | |
download | gcc-ff9b5bd87cd73e1ac1a84c290c071b373148ab37.zip gcc-ff9b5bd87cd73e1ac1a84c290c071b373148ab37.tar.gz gcc-ff9b5bd87cd73e1ac1a84c290c071b373148ab37.tar.bz2 |
* expr.c (expand_assignment): Fix alignment parm in emit_block_move.
From-SVN: r10977
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |