From: Richard Kenner Date: Thu, 1 Apr 1993 12:27:57 +0000 (-0500) Subject: (emit_push_insn, expand_assignment): Fix typo in last change. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=26ba80fc72d81b6b1f5af06e74c0f67d29657016;p=gcc.git (emit_push_insn, expand_assignment): Fix typo in last change. From-SVN: r3985 --- diff --git a/gcc/expr.c b/gcc/expr.c index cdaf15f8d1b..6526e211d80 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -1997,13 +1997,13 @@ emit_push_insn (x, mode, type, size, align, partial, reg, extra, VOIDmode, 3, temp, Pmode, XEXP (xinner, 0), Pmode, convert_to_mode (TYPE_MODE (sizetype), size, TREE_UNSIGNED (sizetype)), - size, TYPE_MODE (sizetype)); + TYPE_MODE (sizetype)); #else emit_library_call (bcopy_libfunc, 0, VOIDmode, 3, XEXP (xinner, 0), Pmode, temp, Pmode, convert_to_mode (TYPE_MODE (sizetype), size, TREE_UNSIGNED (sizetype)), - size, TYPE_MODE (sizetype)); + TYPE_MODE (sizetype)); #endif OK_DEFER_POP; } @@ -2232,14 +2232,14 @@ expand_assignment (to, from, want_value, suggest_reg) XEXP (from_rtx, 0), Pmode, convert_to_mode (TYPE_MODE (sizetype), size, TREE_UNSIGNED (sizetype)), - size, TYPE_MODE (sizetype)); + TYPE_MODE (sizetype)); #else emit_library_call (bcopy_libfunc, 0, VOIDmode, 3, XEXP (from_rtx, 0), Pmode, XEXP (to_rtx, 0), Pmode, convert_to_mode (TYPE_MODE (sizetype), size, TREE_UNSIGNED (sizetype)), - size, TYPE_MODE (sizetype)); + TYPE_MODE (sizetype)); #endif preserve_temp_slots (to_rtx);