Enable 64-bit FPU only for NewABI. Spotted by Vince Weaver.
authorths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Tue, 6 May 2008 20:48:02 +0000 (20:48 +0000)
committerths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Tue, 6 May 2008 20:48:02 +0000 (20:48 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4368 c046a42c-6fe2-441c-8c8c-71466251a162

target-mips/translate_init.c

index d069285..fb9e6e2 100644 (file)
@@ -495,9 +495,11 @@ static void fpu_init (CPUMIPSState *env, const mips_def_t *def)
 #ifdef CONFIG_USER_ONLY
     if (env->CP0_Config1 & (1 << CP0C1_FP))
         env->hflags |= MIPS_HFLAG_FPU;
+#ifdef TARGET_MIPS64
     if (env->fpu->fcr0 & (1 << FCR0_F64))
         env->hflags |= MIPS_HFLAG_F64;
 #endif
+#endif
 }
 
 static void mvp_init (CPUMIPSState *env, const mips_def_t *def)