From: Gustavo Romero <[email protected]> Add a sentinel to the ARMASIdx enum so it can be used to compute the total number of address spaces supported by the arch.
Signed-off-by: Gustavo Romero <[email protected]> Reviewed-by: Pierrick Bouvier <[email protected]> Message-ID: <[email protected]> Signed-off-by: Philippe Mathieu-Daudé <[email protected]> --- target/arm/cpu.h | 1 + 1 file changed, 1 insertion(+) diff --git a/target/arm/cpu.h b/target/arm/cpu.h index 2f124d1b157..1eaf5a3fddf 100644 --- a/target/arm/cpu.h +++ b/target/arm/cpu.h @@ -2347,6 +2347,7 @@ typedef enum ARMASIdx { ARMASIdx_S = 1, ARMASIdx_TagNS = 2, ARMASIdx_TagS = 3, + ARMASIdx_MAX = ARMASIdx_TagS } ARMASIdx; static inline ARMMMUIdx arm_space_to_phys(ARMSecuritySpace space) -- 2.52.0
