mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-02 22:41:07 +00:00
tcg/ia64: Only one call output register needed for 64 bit hosts
The second register is never used for ia64 hosts. Cc: Aurelien Jarno <aurelien@aurel32.net> Signed-off-by: Stefan Weil <weil@mail.berlios.de> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
68af23af69
commit
af15a62309
1 changed files with 2 additions and 3 deletions
|
@ -172,9 +172,8 @@ static const int tcg_target_call_iarg_regs[8] = {
|
|||
TCG_REG_R63,
|
||||
};
|
||||
|
||||
static const int tcg_target_call_oarg_regs[2] = {
|
||||
TCG_REG_R8,
|
||||
TCG_REG_R9
|
||||
static const int tcg_target_call_oarg_regs[] = {
|
||||
TCG_REG_R8
|
||||
};
|
||||
|
||||
/* maximum number of register used for input function arguments */
|
||||
|
|
Loading…
Reference in a new issue