mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
target-arm: Extend feature flags to 64 bits
Extend feature flags to 64 bits, as we've just run out of space in the 32 bit integer we were using for them. Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
de9b05b807
commit
918f5dca18
3 changed files with 6 additions and 6 deletions
|
@ -129,7 +129,7 @@ static void arm_cpu_reset(CPUState *s)
|
|||
|
||||
static inline void set_feature(CPUARMState *env, int feature)
|
||||
{
|
||||
env->features |= 1u << feature;
|
||||
env->features |= 1ULL << feature;
|
||||
}
|
||||
|
||||
static void arm_cpu_initfn(Object *obj)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue