From 5930367dbc09362ebb8ec1d55b51312fa1b7a025 Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Tue, 27 Nov 2018 08:26:44 -0700 Subject: [PATCH] mips.c (mips_block_move_straight): Use RETURN_BEGIN in call to move_by_pieces. * config/mips/mips.c (mips_block_move_straight): Use RETURN_BEGIN in call to move_by_pieces. 2018-11-27 Tamar Christina From-SVN: r266512 --- gcc/ChangeLog | 3 +++ gcc/config/mips/mips.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4be85e3c366..a6e8729f370 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 17a2a66956e..09b2ae72199 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); } } -- 2.30.2