From: law Date: Tue, 27 Nov 2018 15:26:44 +0000 (+0000) Subject: * config/mips/mips.c (mips_block_move_straight): Use RETURN_BEGIN X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=32b39b86aa196f39f1647b7ca786fe066f1b9d03;p=thirdparty%2Fgcc.git * config/mips/mips.c (mips_block_move_straight): Use RETURN_BEGIN in call to move_by_pieces. 2018-11-27 Tamar Christina git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@266512 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4be85e3c366b..a6e8729f3702 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2018-11-27 Jeff Law + * config/mips/mips.c (mips_block_move_straight): Use RETURN_BEGIN + in call to move_by_pieces. + * config/microblaze/microblaze.c (microblaze_block_move_straight): Use RETURN_BEGIN in call to move_by_pieces. (microblaze_expand_block_move): Likewise. diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 17a2a66956e6..09b2ae721990 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -8064,7 +8064,7 @@ mips_block_move_straight (rtx dest, rtx src, HOST_WIDE_INT length) src = adjust_address (src, BLKmode, offset); dest = adjust_address (dest, BLKmode, offset); move_by_pieces (dest, src, length - offset, - MIN (MEM_ALIGN (src), MEM_ALIGN (dest)), 0); + MIN (MEM_ALIGN (src), MEM_ALIGN (dest)), RETURN_BEGIN); } }