diff options
| author | Richard Henderson | 2014-04-25 16:47:54 +0200 |
|---|---|---|
| committer | Richard Henderson | 2014-05-12 20:13:11 +0200 |
| commit | 6bf3e99747d107c9202ebe0970d7bb8b9d4a3472 (patch) | |
| tree | 12c8e74eb229b37ba96fd0e28ed763f52c7db545 /tcg | |
| parent | tcg: Require TCG_TARGET_INSN_UNIT_SIZE (diff) | |
| download | qemu-6bf3e99747d107c9202ebe0970d7bb8b9d4a3472.tar.gz qemu-6bf3e99747d107c9202ebe0970d7bb8b9d4a3472.tar.xz qemu-6bf3e99747d107c9202ebe0970d7bb8b9d4a3472.zip | |
tcg-i386: Rename tcg_out_calli to tcg_out_call
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'tcg')
| -rw-r--r-- | tcg/i386/tcg-target.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tcg/i386/tcg-target.c b/tcg/i386/tcg-target.c index eb8d2a1217..48a95f8da2 100644 --- a/tcg/i386/tcg-target.c +++ b/tcg/i386/tcg-target.c @@ -1113,7 +1113,7 @@ static void tcg_out_branch(TCGContext *s, int call, tcg_insn_unit *dest) } } -static inline void tcg_out_calli(TCGContext *s, tcg_insn_unit *dest) +static inline void tcg_out_call(TCGContext *s, tcg_insn_unit *dest) { tcg_out_branch(s, 1, dest); } @@ -1308,7 +1308,7 @@ static void tcg_out_qemu_ld_slow_path(TCGContext *s, TCGLabelQemuLdst *l) (uintptr_t)l->raddr); } - tcg_out_calli(s, qemu_ld_helpers[opc & ~MO_SIGN]); + tcg_out_call(s, qemu_ld_helpers[opc & ~MO_SIGN]); data_reg = l->datalo_reg; switch (opc & MO_SSIZE) { @@ -1748,7 +1748,7 @@ static inline void tcg_out_op(TCGContext *s, TCGOpcode opc, break; case INDEX_op_call: if (const_args[0]) { - tcg_out_calli(s, (tcg_insn_unit *)(uintptr_t)args[0]); + tcg_out_call(s, (tcg_insn_unit *)(uintptr_t)args[0]); } else { /* call *reg */ tcg_out_modrm(s, OPC_GRP5, EXT5_CALLN_Ev, args[0]); |
