From: Richard Kenner Date: Tue, 23 Jun 1992 10:19:36 +0000 (-0400) Subject: *** empty log message *** X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5a2724d73a761fa8f41fe3e0ea0e06b7065fa8ee;p=gcc.git *** empty log message *** From-SVN: r1243 --- diff --git a/gcc/expr.c b/gcc/expr.c index eadbccac7ad..fef186e8916 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -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 } }