From a4320483fb1108583197844f82c822f564db05f4 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Tue, 7 Jul 1992 18:03:56 +0000 Subject: [PATCH] *** empty log message *** From-SVN: r1498 --- gcc/expr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/expr.c b/gcc/expr.c index e1a94e7e359..7f480f3d0d3 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -1358,7 +1358,7 @@ emit_move_insn (x, y) /* This will handle any multi-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; -- 2.30.2