diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2020-04-30 19:09:28 +0100 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2020-05-04 12:57:56 +0100 |
| commit | 0d787cf1f3c88fa29477e054f8523f6d82d91c98 (patch) | |
| tree | 19ad1a2c6ead209f3704e474c1c3717a3a987f4f | |
| parent | 2aca5284b14b7f3bedec7c59e7cc68da26944585 (diff) | |
| download | focaccia-qemu-0d787cf1f3c88fa29477e054f8523f6d82d91c98.tar.gz focaccia-qemu-0d787cf1f3c88fa29477e054f8523f6d82d91c98.zip | |
target/arm/translate-vfp.inc.c: Remove duplicate simd_r32 check
Somewhere along theline we accidentally added a duplicate "using D16-D31 when they don't exist" check to do_vfm_dp() (probably an artifact of a patchseries rebase). Remove it. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-id: 20200430181003.21682-2-peter.maydell@linaro.org
| -rw-r--r-- | target/arm/translate-vfp.inc.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/target/arm/translate-vfp.inc.c b/target/arm/translate-vfp.inc.c index b087bbd812..e1a9017598 100644 --- a/target/arm/translate-vfp.inc.c +++ b/target/arm/translate-vfp.inc.c @@ -1872,12 +1872,6 @@ static bool do_vfm_dp(DisasContext *s, arg_VFMA_dp *a, bool neg_n, bool neg_d) return false; } - /* UNDEF accesses to D16-D31 if they don't exist. */ - if (!dc_isar_feature(aa32_simd_r32, s) && - ((a->vd | a->vn | a->vm) & 0x10)) { - return false; - } - if (!vfp_access_check(s)) { return true; } |