projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
505fce5
)
target/arm: Remove unused fpst from VDOT_scalar
author
Richard Henderson
<richard.henderson@linaro.org>
Tue, 25 May 2021 01:03:51 +0000
(18:03 -0700)
committer
Peter Maydell
<peter.maydell@linaro.org>
Tue, 25 May 2021 15:01:44 +0000
(16:01 +0100)
Cut and paste error from another pattern.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-id:
20210525010358
.152808-86-richard.henderson@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
target/arm/translate-neon.c
patch
|
blob
|
history
diff --git
a/target/arm/translate-neon.c
b/target/arm/translate-neon.c
index 1a8fc7fb3903027c498a7bff9502e8fc53c82e44..14a9d0d4d3095555c388cde9755159efc5f73275 100644
(file)
--- 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;
}