From: Richard Stallman Date: Sun, 21 Feb 1993 06:51:34 +0000 (+0000) Subject: (emit_move_insn_1): New subroutine cut from emit_move_insn. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=261c4230db075ad59116a75be8961fbee10d60e9;p=gcc.git (emit_move_insn_1): New subroutine cut from emit_move_insn. (emit_move_insn): Use that. From-SVN: r3505 --- diff --git a/gcc/expr.c b/gcc/expr.c index 12fbe7634ba..4768929985f 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -1581,6 +1581,22 @@ emit_move_insn (x, y) if (mode == BLKmode) abort (); + return emit_move_insn_1 (x, y); +} + +/* Low level part of emit_move_insn. + Called just like emit_move_insn, but assumes X and Y + are basically valid. */ + +rtx +emit_move_insn_1 (x, y) + rtx x, y; +{ + enum machine_mode mode = GET_MODE (x); + enum machine_mode submode; + enum mode_class class = GET_MODE_CLASS (mode); + int i; + if (class == MODE_COMPLEX_FLOAT || class == MODE_COMPLEX_INT) submode = mode_for_size (GET_MODE_UNIT_SIZE (mode) * BITS_PER_UNIT, (class == MODE_COMPLEX_INT