diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2020-08-05 22:08:48 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2020-08-24 10:15:11 +0100 |
commit | cf6303d262e31f4812dfeb654c6c6803e52000af (patch) | |
tree | ab2a195b67a1b43dd46c8f2e80a97c99066e4907 /target | |
parent | 8b4c9a50dc9531a729ae4b5941d287ad0422db48 (diff) |
target/arm: Delete unused ARM_FEATURE_CRC
In commit 962fcbf2efe57231a9f5df we converted the uses of the
ARM_FEATURE_CRC bit to use the aa32_crc32 isar_feature test
instead. However we forgot to remove the now-unused definition
of the feature name in the enum. Delete it now.
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: 20200805210848.6688-1-peter.maydell@linaro.org
Diffstat (limited to 'target')
-rw-r--r-- | target/arm/cpu.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/target/arm/cpu.h b/target/arm/cpu.h index 9e8ed423ea..9d2845c179 100644 --- a/target/arm/cpu.h +++ b/target/arm/cpu.h @@ -1950,7 +1950,6 @@ enum arm_features { ARM_FEATURE_V8, ARM_FEATURE_AARCH64, /* supports 64 bit mode */ ARM_FEATURE_CBAR, /* has cp15 CBAR */ - ARM_FEATURE_CRC, /* ARMv8 CRC instructions */ ARM_FEATURE_CBAR_RO, /* has cp15 CBAR and it is read-only */ ARM_FEATURE_EL2, /* has EL2 Virtualization support */ ARM_FEATURE_EL3, /* has EL3 Secure monitor support */ |