diff options
| author | Peter Maydell | 2014-06-09 16:43:25 +0200 |
|---|---|---|
| committer | Peter Maydell | 2014-06-09 17:06:12 +0200 |
| commit | 130f2e7dcb4a5f9534fc65200121f06983435a77 (patch) | |
| tree | 24d33bae4c819916142f6b9ccc21164c64393bcc /linux-user/elfload.c | |
| parent | target-arm: VFPv4 implies half-precision extension (diff) | |
| download | qemu-130f2e7dcb4a5f9534fc65200121f06983435a77.tar.gz qemu-130f2e7dcb4a5f9534fc65200121f06983435a77.tar.xz qemu-130f2e7dcb4a5f9534fc65200121f06983435a77.zip | |
target-arm: A64: Implement CRC instructions
Implement the optional A64 CRC instructions.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 1401458125-27977-6-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'linux-user/elfload.c')
| -rw-r--r-- | linux-user/elfload.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux-user/elfload.c b/linux-user/elfload.c index e8724939f8..f2d5955230 100644 --- a/linux-user/elfload.c +++ b/linux-user/elfload.c @@ -540,6 +540,7 @@ static uint32_t get_elf_hwcap(void) #define GET_FEATURE(feat, hwcap) \ do { if (arm_feature(&cpu->env, feat)) { hwcaps |= hwcap; } } while (0) GET_FEATURE(ARM_FEATURE_V8_PMULL, ARM_HWCAP_A64_PMULL); + GET_FEATURE(ARM_FEATURE_CRC, ARM_HWCAP_A64_CRC32); #undef GET_FEATURE return hwcaps; |
