Skip to content

Commit

Permalink
tcg/ia64: Only one call output register needed for 64 bit hosts
Browse files Browse the repository at this point in the history
The second register is never used for ia64 hosts.

Cc: Aurelien Jarno <[email protected]>
Signed-off-by: Stefan Weil <[email protected]>
Signed-off-by: Blue Swirl <[email protected]>
  • Loading branch information
Stefan Weil authored and blueswirl committed Sep 17, 2011
1 parent 68af23a commit af15a62
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tcg/ia64/tcg-target.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit af15a62

Please sign in to comment.