From: Stefan Weil Date: Mon, 5 Sep 2011 09:06:59 +0000 (+0200) Subject: tcg/ia64: Only one call output register needed for 64 bit hosts X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=af15a62309f767ce457e0ac8e3e4b1c5838c4432;p=qemu.git tcg/ia64: Only one call output register needed for 64 bit hosts The second register is never used for ia64 hosts. Cc: Aurelien Jarno Signed-off-by: Stefan Weil Signed-off-by: Blue Swirl --- diff --git a/tcg/ia64/tcg-target.c b/tcg/ia64/tcg-target.c index 9db205d4cc..3803ab6bfa 100644 --- a/tcg/ia64/tcg-target.c +++ b/tcg/ia64/tcg-target.c @@ -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 */