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 <av1474@comtv.ru>
Fine-with-me'd-by: Vassili Karpov <av1474@comtv.ru>
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
Stefan Weil 2011-09-05 11:07:02 +02:00 committed by Blue Swirl
parent 26a74ae377
commit be9c4183c4
1 changed files with 1 additions and 1 deletions

View File

@ -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
};