On Wed, Oct 1, 2025 at 5:33 PM Anton Johansson via <[email protected]> wrote: > > uint32_t is already in use in most places storing misa extensions such > as CPUArchState::misa_exts, RISCVCPUProfile::misa_exts, > RISCVImpliedExtsRule::implied_misa_exts. Additionally. the field is > already migrated as uint32_t. > > Signed-off-by: Anton Johansson <[email protected]>
Reviewed-by: Alistair Francis <[email protected]> Alistair > --- > target/riscv/cpu.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/target/riscv/cpu.h b/target/riscv/cpu.h > index 4a862da615..f05e06bb70 100644 > --- a/target/riscv/cpu.h > +++ b/target/riscv/cpu.h > @@ -50,7 +50,7 @@ typedef struct CPUArchState CPURISCVState; > */ > #define RISCV_UW2_ALWAYS_STORE_AMO 1 > > -#define RV(x) ((target_ulong)1 << (x - 'A')) > +#define RV(x) BIT(x - 'A') > > /* > * Update misa_bits[], misa_ext_info_arr[] and misa_ext_cfgs[] > @@ -582,7 +582,7 @@ struct RISCVCPUClass { > RISCVCPUDef *def; > }; > > -static inline int riscv_has_ext(CPURISCVState *env, target_ulong ext) > +static inline int riscv_has_ext(CPURISCVState *env, uint32_t ext) > { > return (env->misa_ext & ext) != 0; > } > -- > 2.51.0 > >
