From: Stefan Weil Date: Mon, 5 Sep 2011 09:07:02 +0000 (+0200) Subject: tcg/ppc64: Only one call output register needed for 64 bit hosts X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=be9c4183c44fcde64730446eb76bd68083dfa0db;p=qemu.git tcg/ppc64: Only one call output register needed for 64 bit hosts The second register is only needed for 32 bit hosts. Cc: Vassili Karpov Fine-with-me'd-by: Vassili Karpov Signed-off-by: Stefan Weil Signed-off-by: Blue Swirl --- diff --git a/tcg/ppc64/tcg-target.c b/tcg/ppc64/tcg-target.c index e3c63adc3e..3d24cd4da4 100644 --- a/tcg/ppc64/tcg-target.c +++ b/tcg/ppc64/tcg-target.c @@ -130,7 +130,7 @@ static const int tcg_target_call_iarg_regs[] = { TCG_REG_R10 }; -static const int tcg_target_call_oarg_regs[2] = { +static const int tcg_target_call_oarg_regs[] = { TCG_REG_R3 };