Fix build of MIPS target without FPU support.

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2233 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
ths 2006-12-07 20:07:37 +00:00
parent 9f08349345
commit 71fb7241c6
2 changed files with 26 additions and 0 deletions

View file

@ -627,6 +627,7 @@ void op_movz (void)
RETURN();
}
#ifdef MIPS_USES_FPU
void op_movf (void)
{
if (!(env->fcr31 & PARAM1))
@ -640,6 +641,7 @@ void op_movt (void)
env->gpr[PARAM2] = env->gpr[PARAM3];
RETURN();
}
#endif
/* Tests */
#define OP_COND(name, cond) \