... to match the insn, which has no leading "f".

Signed-off-by: Richard Henderson <r...@twiddle.net>
---
 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


Reply via email to