]> gcc.gnu.org Git - gcc.git/commitdiff
*** empty log message ***
authorRichard Kenner <kenner@gcc.gnu.org>
Tue, 23 Jun 1992 10:19:36 +0000 (06:19 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Tue, 23 Jun 1992 10:19:36 +0000 (06:19 -0400)
From-SVN: r1243

gcc/expr.c

index eadbccac7ad16444f99281d7c292923608206156..fef186e8916e4f3442bcb8f4e9d93ece8942cbb0 100644 (file)
@@ -1142,12 +1142,12 @@ emit_block_move (x, y, size, align)
       emit_library_call (memcpy_libfunc, 1,
                         VOIDmode, 3, XEXP (x, 0), Pmode,
                         XEXP (y, 0), Pmode,
-                        size, Pmode);
+                        convert_to_mode (Pmode, size, 1), Pmode);
 #else
       emit_library_call (bcopy_libfunc, 1,
                         VOIDmode, 3, XEXP (y, 0), Pmode,
                         XEXP (x, 0), Pmode,
-                        size, Pmode);
+                        convert_to_mode (Pmode, size, 1), Pmode);
 #endif
     }
 }
This page took 0.073769 seconds and 5 git commands to generate.