diff options
author | Richard Stallman <rms@gnu.org> | 1992-07-07 18:03:56 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-07-07 18:03:56 +0000 |
commit | a4320483fb1108583197844f82c822f564db05f4 (patch) | |
tree | 08871789fddbf1cbd2afc73b692441b274598a1e /gcc | |
parent | effeb5cc51177aa22122753f6e73211b6a7ae71f (diff) | |
download | gcc-a4320483fb1108583197844f82c822f564db05f4.zip gcc-a4320483fb1108583197844f82c822f564db05f4.tar.gz gcc-a4320483fb1108583197844f82c822f564db05f4.tar.bz2 |
*** empty log message ***
From-SVN: r1498
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |