From patchwork Mon May 12 23:31:05 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 348145 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 18265140083 for ; Tue, 13 May 2014 09:36:54 +1000 (EST) Received: from localhost ([::1]:40615 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wjzm8-0001Ww-1D for incoming@patchwork.ozlabs.org; Mon, 12 May 2014 19:36:52 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59426) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wjzhk-0005Is-CK for qemu-devel@nongnu.org; Mon, 12 May 2014 19:32:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wjzhe-0005we-Ds for qemu-devel@nongnu.org; Mon, 12 May 2014 19:32:20 -0400 Received: from mail-qg0-x232.google.com ([2607:f8b0:400d:c04::232]:36541) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wjzhe-0005wa-9V for qemu-devel@nongnu.org; Mon, 12 May 2014 19:32:14 -0400 Received: by mail-qg0-f50.google.com with SMTP id z60so8423790qgd.23 for ; Mon, 12 May 2014 16:32:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=l7/wvUCBvADVw0FAJrpb6vIGTASwkD9iX8QpEGRQ1L4=; b=x39cHUAWJQJPyOc0fVm9ml3DQ0VetqhVgidjtrgmfYfu6Iwue6uiW4TJtPAr/NRDDu KrdZJ8VW6YNnJ+mXUtW1OsJvGLXqCgEscWMZGfA+rZF/UKbrethwbEoPn0NtSTawyUBV qJIg4I7BmEzhyckWTquCSeuNK4wNVYSS/FxanagLgGPIrjBPIogO45EEzmxvGA1UsApY hxWH2QMYGXheAx7qG6UEaOPiFI6U1wNd0nD56nEzSslmvkS03p1szu3frMf/WGpFNGJU bSe5EYuzIpN0sIXbI/2C6Q3uLs3RIryx3O1KcYn+9bGFt5chJoE37PAN5d+ePcIniIcS PjHg== X-Received: by 10.229.192.7 with SMTP id do7mr42896314qcb.1.1399937534011; Mon, 12 May 2014 16:32:14 -0700 (PDT) Received: from anchor.com (50-194-63-110-static.hfc.comcastbusiness.net. [50.194.63.110]) by mx.google.com with ESMTPSA id m7sm23815931qae.35.2014.05.12.16.32.12 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 12 May 2014 16:32:13 -0700 (PDT) From: Richard Henderson To: qemu-devel@nongnu.org Date: Mon, 12 May 2014 16:31:05 -0700 Message-Id: <1399937474-6530-18-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 1.9.0 In-Reply-To: <1399937474-6530-1-git-send-email-rth@twiddle.net> References: <1399937474-6530-1-git-send-email-rth@twiddle.net> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400d:c04::232 Cc: peter.maydell@linaro.org Subject: [Qemu-devel] [PULL 17/26] tcg-i386: Rename tcg_out_calli to tcg_out_call X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Richard Henderson --- tcg/i386/tcg-target.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tcg/i386/tcg-target.c b/tcg/i386/tcg-target.c index eb8d2a1..48a95f8 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]);