]> rtime.felk.cvut.cz Git - lisovros/qemu_apohw.git/commitdiff
tcg-ppc64: Use the correct test in tcg_out_call
authorRichard Henderson <rth@twiddle.net>
Wed, 30 Apr 2014 18:57:11 +0000 (11:57 -0700)
committerRichard Henderson <rth@twiddle.net>
Mon, 23 Jun 2014 14:31:38 +0000 (07:31 -0700)
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>
tcg/ppc64/tcg-target.c

index a198a70a3a229a0b95d0633538425f7351a62c97..31c3a7aad1eebad9ef7d59cd46ab5815c912784a 100644 (file)
@@ -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
 }