From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37815) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X4ucL-0003Mu-1p for qemu-devel@nongnu.org; Wed, 09 Jul 2014 12:21:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X4ucD-0005LJ-Pn for qemu-devel@nongnu.org; Wed, 09 Jul 2014 12:21:12 -0400 Received: from mail-pd0-x22b.google.com ([2607:f8b0:400e:c02::22b]:54785) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X4ucD-0005Kx-Je for qemu-devel@nongnu.org; Wed, 09 Jul 2014 12:21:05 -0400 Received: by mail-pd0-f171.google.com with SMTP id fp1so9267011pdb.16 for ; Wed, 09 Jul 2014 09:21:05 -0700 (PDT) Sender: Richard Henderson From: Richard Henderson Date: Wed, 9 Jul 2014 09:20:32 -0700 Message-Id: <1404922834-28169-17-git-send-email-rth@twiddle.net> In-Reply-To: <1404922834-28169-1-git-send-email-rth@twiddle.net> References: <1404922834-28169-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PULL 16/18] target-alpha: Rename fcvtql List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, viro@ZenIV.linux.org.uk ... to match the insn, which has no leading "f". Signed-off-by: Richard Henderson --- target-alpha/translate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target-alpha/translate.c b/target-alpha/translate.c index 8ad098a..9129e44 100644 --- a/target-alpha/translate.c +++ b/target-alpha/translate.c @@ -714,7 +714,7 @@ static void gen_fp_exc_raise(int rc, int fn11) tcg_temp_free_i32(ign); } -static void gen_fcvtlq(TCGv vc, TCGv vb) +static void gen_cvtlq(TCGv vc, TCGv vb) { TCGv tmp = tcg_temp_new(); @@ -2185,7 +2185,7 @@ static ExitStatus translate_one(DisasContext *ctx, uint32_t insn) REQUIRE_REG_31(ra); vc = dest_fpr(ctx, rc); vb = load_fpr(ctx, rb); - gen_fcvtlq(vc, vb); + gen_cvtlq(vc, vb); break; case 0x020: /* CPYS */ -- 1.9.3