Skip to content

Commit

Permalink
tcg/ppc: Replace TCG_TARGET_CALL_DARWIN with _CALL_DARWIN
Browse files Browse the repository at this point in the history
If __APPLE__, ensure that _CALL_DARWIN is set, then remove
our local TCG_TARGET_CALL_DARWIN.

Signed-off-by: Richard Henderson <[email protected]>
  • Loading branch information
rth7680 committed Sep 14, 2021
1 parent 57d4941 commit 2fa169b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tcg/ppc/tcg-target.c.inc
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
#include "elf.h"
#include "../tcg-pool.c.inc"

#if defined _CALL_DARWIN || defined __APPLE__
#define TCG_TARGET_CALL_DARWIN
#if !defined _CALL_DARWIN && defined __APPLE__
#define _CALL_DARWIN 1
#endif
#ifdef _CALL_SYSV
# define TCG_TARGET_CALL_ALIGN_ARGS 1
Expand Down Expand Up @@ -169,7 +169,7 @@ static const int tcg_target_call_oarg_regs[] = {
};

static const int tcg_target_callee_save_regs[] = {
#ifdef TCG_TARGET_CALL_DARWIN
#ifdef _CALL_DARWIN
TCG_REG_R11,
#endif
TCG_REG_R14,
Expand Down Expand Up @@ -2372,7 +2372,7 @@ static void tcg_out_nop_fill(tcg_insn_unit *p, int count)
# define LINK_AREA_SIZE (6 * SZR)
# define LR_OFFSET (1 * SZR)
# define TCG_TARGET_CALL_STACK_OFFSET (LINK_AREA_SIZE + 8 * SZR)
#elif defined(TCG_TARGET_CALL_DARWIN)
#elif defined(_CALL_DARWIN)
# define LINK_AREA_SIZE (6 * SZR)
# define LR_OFFSET (2 * SZR)
#elif TCG_TARGET_REG_BITS == 64
Expand Down

0 comments on commit 2fa169b

Please sign in to comment.