Commit 5605f2e1 by Jeff Law Committed by Jeff Law

lm32.c (lm32_block_move_inline): Use RETURN_BEGIN in call to move_by_pieces.

	* config/lm32/lm32.c (lm32_block_move_inline): Use RETURN_BEGIN in
	call to move_by_pieces.

From-SVN: r266513
parent 5930367d
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.
......@@ -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);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment