From: Michael Meissner Date: Mon, 10 Aug 1992 02:31:55 +0000 (+0000) Subject: emit_move_insn only takes two arguments. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f093cb8f4b8da0e54f3fb71834040d41d8904220;p=gcc.git emit_move_insn only takes two arguments. From-SVN: r1787 --- diff --git a/gcc/config/i386/i386.h b/gcc/config/i386/i386.h index a03b582a9cc..16ce647e411 100644 --- a/gcc/config/i386/i386.h +++ b/gcc/config/i386/i386.h @@ -992,13 +992,13 @@ do { \ if (GET_CODE (XEXP (X, 0)) == REG) \ { register rtx temp = gen_reg_rtx (Pmode); \ register rtx val = force_operand (XEXP (X, 1), temp); \ - if (val != temp) emit_move_insn (temp, val, 0); \ + if (val != temp) emit_move_insn (temp, val); \ XEXP (X, 1) = temp; \ goto WIN; } \ else if (GET_CODE (XEXP (X, 1)) == REG) \ { register rtx temp = gen_reg_rtx (Pmode); \ register rtx val = force_operand (XEXP (X, 0), temp); \ - if (val != temp) emit_move_insn (temp, val, 0); \ + if (val != temp) emit_move_insn (temp, val); \ XEXP (X, 0) = temp; \ goto WIN; }}}