diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2014-06-09 15:43:24 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2014-06-09 16:06:11 +0100 |
commit | 411bdc7837681f58828ca490647fa1784a6700b9 (patch) | |
tree | 6027fd13334ec1df248c2728814f39191895e66a /target-arm | |
parent | 4e624edaebec9312be7b63096bbe5b2fe76f3613 (diff) | |
download | qemu-411bdc7837681f58828ca490647fa1784a6700b9.zip qemu-411bdc7837681f58828ca490647fa1784a6700b9.tar.gz qemu-411bdc7837681f58828ca490647fa1784a6700b9.tar.bz2 |
target-arm: A64: Use PMULL feature bit for PMULL
Now that we have a separate ARM_FEATURE_V8_PMULL bit, use it for
the A64 PMULL, not the AES feature bit.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target-arm')
-rw-r--r-- | target-arm/translate-a64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-arm/translate-a64.c b/target-arm/translate-a64.c index a9c4633..9832cc3 100644 --- a/target-arm/translate-a64.c +++ b/target-arm/translate-a64.c @@ -8574,7 +8574,7 @@ static void disas_simd_three_reg_diff(DisasContext *s, uint32_t insn) return; } if (size == 3) { - if (!arm_dc_feature(s, ARM_FEATURE_V8_AES)) { + if (!arm_dc_feature(s, ARM_FEATURE_V8_PMULL)) { unallocated_encoding(s); return; } |