Skip to content

Commit

Permalink
tcg-i386: Rename tcg_out_calli to tcg_out_call
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Henderson <[email protected]>
  • Loading branch information
rth7680 committed May 12, 2014
1 parent 5053361 commit 6bf3e99
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tcg/i386/tcg-target.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down Expand Up @@ -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) {
Expand Down Expand Up @@ -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]);
Expand Down

0 comments on commit 6bf3e99

Please sign in to comment.