diff options
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3058,10 +3058,10 @@ emit_move_insn_1 (x, y) return get_last_insn (); } - /* This will handle any multi-word mode that lacks a move_insn pattern. - However, you will get better code if you define such patterns, + /* This will handle any multi-word or full-word mode that lacks a move_insn + pattern. However, you will get better code if you define such patterns, even if they must turn into multiple assembler instructions. */ - else if (GET_MODE_SIZE (mode) > UNITS_PER_WORD) + else if (GET_MODE_SIZE (mode) >= UNITS_PER_WORD) { rtx last_insn = 0; rtx seq, inner; |