On Thu, 16 Feb 2023 at 03:10, Richard Henderson <[email protected]> wrote: > > Signed-off-by: Richard Henderson <[email protected]> > --- > target/arm/cpu.h | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/target/arm/cpu.h b/target/arm/cpu.h > index 7bc97fece9..2108caf753 100644 > --- a/target/arm/cpu.h > +++ b/target/arm/cpu.h > @@ -4049,6 +4049,11 @@ static inline bool isar_feature_aa64_st(const > ARMISARegisters *id) > return FIELD_EX64(id->id_aa64mmfr2, ID_AA64MMFR2, ST) != 0; > } > > +static inline bool isar_feature_aa64_lse2(const ARMISARegisters *id) > +{ > + return FIELD_EX64(id->id_aa64mmfr2, ID_AA64MMFR2, AT) != 0; > +} > +
Reviewed-by: Peter Maydell <[email protected]> thanks -- PMM
