tcg-i386: Rename tcg_out_calli to tcg_out_call
authorRichard Henderson <rth@twiddle.net>
Fri, 25 Apr 2014 14:47:54 +0000 (07:47 -0700)
committerRichard Henderson <rth@twiddle.net>
Mon, 12 May 2014 18:13:11 +0000 (11:13 -0700)
Signed-off-by: Richard Henderson <rth@twiddle.net>
tcg/i386/tcg-target.c

index eb8d2a12175dd46297d7ac2e9774798850fb5f0a..48a95f8da2814725ef763500ef2fb6a052f30d5c 100644 (file)
@@ -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]);