target/arm: remove old syndrome defines
Now everything is defined with registerfields we can drop the old defines. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-id: 20260422125250.1303100-23-alex.bennee@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Alex Bennée committed
Apr 22, 2026 at 13:52 UTC
fb5ffe0194a84071317709745cd545b173c860f6
1 file changed
-9
target/arm/syndrome.h
-9
@@ -106,15 +106,6 @@ typedef enum {
106
GCS_IT_GCSPOPX = 9,
107
} GCSInstructionType;
108
109
-#define ARM_EL_EC_LENGTH 6
110
-#define ARM_EL_IL_SHIFT 25
111
-#define ARM_EL_ISV_SHIFT 24
112
-#define ARM_EL_IL (1 << ARM_EL_IL_SHIFT)
113
-#define ARM_EL_ISV (1 << ARM_EL_ISV_SHIFT)
114
-
115
-/* In the Data Abort syndrome */
116
-#define ARM_EL_VNCR (1 << 13)
117
-
109
static inline uint32_t syn_get_ec(uint32_t syn)
110
{
111
return FIELD_EX32(syn, SYNDROME, EC);