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:
Peter Maydell 2012-07-12 10:59:06 +00:00
parent de9b05b807
commit 918f5dca18
3 changed files with 6 additions and 6 deletions

View file

@ -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)