mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-23 10:31:22 +00:00
use PUSH_ROUNDING in find_args_size_adjust
This commit is contained in:
parent
7c526098af
commit
f45ead7b6c
@ -3943,10 +3943,10 @@ find_args_size_adjust (rtx insn)
|
||||
{
|
||||
case PRE_INC:
|
||||
case POST_INC:
|
||||
return GET_MODE_SIZE (GET_MODE (mem));
|
||||
return PUSH_ROUNDING( GET_MODE_SIZE (GET_MODE (mem)) );
|
||||
case PRE_DEC:
|
||||
case POST_DEC:
|
||||
return -GET_MODE_SIZE (GET_MODE (mem));
|
||||
return -PUSH_ROUNDING( GET_MODE_SIZE (GET_MODE (mem)) );
|
||||
case PRE_MODIFY:
|
||||
case POST_MODIFY:
|
||||
addr = XEXP (addr, 1);
|
||||
|
Loading…
Reference in New Issue
Block a user