summaryrefslogtreecommitdiff
path: root/tcg
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2014-04-30 11:57:11 -0700
committerRichard Henderson <rth@twiddle.net>2014-06-23 07:31:38 -0700
commiteaf7d1cfe0eae800f35234a8a96367bfd8e54d61 (patch)
tree5afa4c59df8981c8ad86c782f11660ff3cf45618 /tcg
parent802ca56e1d63a513733bf43f945ed654bf7d3eea (diff)
downloadqemu-eaf7d1cfe0eae800f35234a8a96367bfd8e54d61.tar.gz
tcg-ppc64: Use the correct test in tcg_out_call
The correct test uses the _CALL_AIX macro, not a host-specific macro. Tested-by: Tom Musta <tommusta@gmail.com> Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'tcg')
-rw-r--r--tcg/ppc64/tcg-target.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tcg/ppc64/tcg-target.c b/tcg/ppc64/tcg-target.c
index a198a70a3a..31c3a7aad1 100644
--- a/tcg/ppc64/tcg-target.c
+++ b/tcg/ppc64/tcg-target.c
@@ -1089,9 +1089,7 @@ void ppc_tb_set_jmp_target(uintptr_t jmp_addr, uintptr_t addr)
static void tcg_out_call(TCGContext *s, tcg_insn_unit *target)
{
-#ifdef __APPLE__
- tcg_out_b(s, LK, target);
-#else
+#ifdef _CALL_AIX
/* Look through the descriptor. If the branch is in range, and we
don't have to spend too much effort on building the toc. */
void *tgt = ((void **)target)[0];
@@ -1117,6 +1115,8 @@ static void tcg_out_call(TCGContext *s, tcg_insn_unit *target)
tcg_out_ld(s, TCG_TYPE_PTR, TCG_REG_R2, TCG_REG_R2, ofs + SZP);
tcg_out32(s, BCCTR | BO_ALWAYS | LK);
}
+#else
+ tcg_out_b(s, LK, target);
#endif
}