aboutsummaryrefslogtreecommitdiff
path: root/target/arm/translate.c
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2020-05-13 09:32:40 -0700
committerPeter Maydell <peter.maydell@linaro.org>2020-05-14 15:03:08 +0100
commitfe6fb4beb2f9bb0afc813e565504b66a92bbf04b (patch)
tree27d49db82a3b137084bade13f1d218b21a79f740 /target/arm/translate.c
parentc7715b6b51a6f7a5412c5fcb40a4c8586105e597 (diff)
downloadqemu-fe6fb4beb2f9bb0afc813e565504b66a92bbf04b.zip
qemu-fe6fb4beb2f9bb0afc813e565504b66a92bbf04b.tar.gz
qemu-fe6fb4beb2f9bb0afc813e565504b66a92bbf04b.tar.bz2
target/arm: Remove fp_status from helper_{recpe, rsqrte}_u32
These operations do not touch fp_status. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20200513163245.17915-12-richard.henderson@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target/arm/translate.c')
-rw-r--r--target/arm/translate.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/target/arm/translate.c b/target/arm/translate.c
index 7eb30cd..391a09b 100644
--- a/target/arm/translate.c
+++ b/target/arm/translate.c
@@ -6875,19 +6875,11 @@ static int disas_neon_data_insn(DisasContext *s, uint32_t insn)
break;
}
case NEON_2RM_VRECPE:
- {
- TCGv_ptr fpstatus = get_fpstatus_ptr(1);
- gen_helper_recpe_u32(tmp, tmp, fpstatus);
- tcg_temp_free_ptr(fpstatus);
+ gen_helper_recpe_u32(tmp, tmp);
break;
- }
case NEON_2RM_VRSQRTE:
- {
- TCGv_ptr fpstatus = get_fpstatus_ptr(1);
- gen_helper_rsqrte_u32(tmp, tmp, fpstatus);
- tcg_temp_free_ptr(fpstatus);
+ gen_helper_rsqrte_u32(tmp, tmp);
break;
- }
case NEON_2RM_VRECPE_F:
{
TCGv_ptr fpstatus = get_fpstatus_ptr(1);