]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
lm32.c (lm32_block_move_inline): Use RETURN_BEGIN in call to move_by_pieces.
authorJeff Law <law@redhat.com>
Tue, 27 Nov 2018 15:30:40 +0000 (08:30 -0700)
committerJeff Law <law@gcc.gnu.org>
Tue, 27 Nov 2018 15:30:40 +0000 (08:30 -0700)
* config/lm32/lm32.c (lm32_block_move_inline): Use RETURN_BEGIN in
call to move_by_pieces.

From-SVN: r266513

gcc/ChangeLog
gcc/config/lm32/lm32.c

index a6e8729f370202ebace8003206f536d6896c2587..fe8f6dc6ad79c04ae78e5fc6bf0869f53a1e1d09 100644 (file)
@@ -1,5 +1,8 @@
 2018-11-27  Jeff Law  <law@redhat.com>
 
+       * config/lm32/lm32.c (lm32_block_move_inline): 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.
 
index 74d87813f95a309f9fcdcd6f7f52fdaef6029ee3..0f7633afa8d49cd668b98e7a06d75ed4f2b7c02a 100644 (file)
@@ -868,7 +868,7 @@ lm32_block_move_inline (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);
     }
 }