[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v6 76/82] target/arm: Remove unused fpst from VDOT_scalar
From: |
Richard Henderson |
Subject: |
[PATCH v6 76/82] target/arm: Remove unused fpst from VDOT_scalar |
Date: |
Fri, 30 Apr 2021 13:26:04 -0700 |
Cut and paste error from another pattern.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/arm/translate-neon.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/target/arm/translate-neon.c b/target/arm/translate-neon.c
index 41a7b2208e..a0e267694b 100644
--- a/target/arm/translate-neon.c
+++ b/target/arm/translate-neon.c
@@ -325,7 +325,6 @@ static bool trans_VDOT_scalar(DisasContext *s,
arg_VDOT_scalar *a)
{
gen_helper_gvec_4 *fn_gvec;
int opr_sz;
- TCGv_ptr fpst;
if (!dc_isar_feature(aa32_dp, s)) {
return false;
@@ -347,13 +346,11 @@ static bool trans_VDOT_scalar(DisasContext *s,
arg_VDOT_scalar *a)
fn_gvec = a->u ? gen_helper_gvec_udot_idx_b : gen_helper_gvec_sdot_idx_b;
opr_sz = (1 + a->q) * 8;
- fpst = fpstatus_ptr(FPST_STD);
tcg_gen_gvec_4_ool(vfp_reg_offset(1, a->vd),
vfp_reg_offset(1, a->vn),
vfp_reg_offset(1, a->rm),
vfp_reg_offset(1, a->vd),
opr_sz, opr_sz, a->index, fn_gvec);
- tcg_temp_free_ptr(fpst);
return true;
}
--
2.25.1
- [PATCH v6 57/82] target/arm: Implement SVE2 signed saturating doubling multiply high, (continued)
- [PATCH v6 57/82] target/arm: Implement SVE2 signed saturating doubling multiply high, Richard Henderson, 2021/04/30
- [PATCH v6 54/82] target/arm: Implement SVE2 saturating multiply-add high (indexed), Richard Henderson, 2021/04/30
- [PATCH v6 45/82] target/arm: Implement SVE2 gather load insns, Richard Henderson, 2021/04/30
- [PATCH v6 51/82] target/arm: Split out formats for 3 vectors + 1 index, Richard Henderson, 2021/04/30
- [PATCH v6 53/82] target/arm: Implement SVE2 integer multiply-add (indexed), Richard Henderson, 2021/04/30
- [PATCH v6 52/82] target/arm: Implement SVE2 integer multiply (indexed), Richard Henderson, 2021/04/30
- [PATCH v6 58/82] target/arm: Implement SVE2 saturating multiply high (indexed), Richard Henderson, 2021/04/30
- [PATCH v6 72/82] target/arm: Implement SVE2 bitwise shift immediate, Richard Henderson, 2021/04/30
- [PATCH v6 44/82] target/arm: Implement SVE2 scatter store insns, Richard Henderson, 2021/04/30
- [PATCH v6 61/82] target/arm: Implement SVE2 crypto unary operations, Richard Henderson, 2021/04/30
- [PATCH v6 76/82] target/arm: Remove unused fpst from VDOT_scalar,
Richard Henderson <=
- [PATCH v6 64/82] target/arm: Implement SVE2 TBL, TBX, Richard Henderson, 2021/04/30
- [PATCH v6 63/82] target/arm: Implement SVE2 crypto constructive binary operations, Richard Henderson, 2021/04/30
- [PATCH v6 74/82] target/arm: Implement aarch64 SUDOT, USDOT, Richard Henderson, 2021/04/30
- [PATCH v6 65/82] target/arm: Implement SVE2 FCVTNT, Richard Henderson, 2021/04/30
- [PATCH v6 71/82] target/arm: Implement 128-bit ZIP, UZP, TRN, Richard Henderson, 2021/04/30
- [PATCH v6 49/82] target/arm: Pass separate addend to FCMLA helpers, Richard Henderson, 2021/04/30
- [PATCH v6 67/82] target/arm: Implement SVE2 FCVTXNT, FCVTX, Richard Henderson, 2021/04/30
- [PATCH v6 73/82] target/arm: Implement SVE2 fp multiply-add long, Richard Henderson, 2021/04/30
- [PATCH v6 56/82] target/arm: Implement SVE2 saturating multiply (indexed), Richard Henderson, 2021/04/30
- [PATCH v6 62/82] target/arm: Implement SVE2 crypto destructive binary operations, Richard Henderson, 2021/04/30