]> gcc.gnu.org Git - gcc.git/commitdiff
(emit_push_insn, expand_assignment): Fix typo in last change.
authorRichard Kenner <kenner@gcc.gnu.org>
Thu, 1 Apr 1993 12:27:57 +0000 (07:27 -0500)
committerRichard Kenner <kenner@gcc.gnu.org>
Thu, 1 Apr 1993 12:27:57 +0000 (07:27 -0500)
From-SVN: r3985

gcc/expr.c

index cdaf15f8d1bddc875a7a83ea87ea40a742ad668d..6526e211d809ca2b268e2488808fc8758c3c7f36 100644 (file)
@@ -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);
This page took 0.074305 seconds and 5 git commands to generate.