mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
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:
parent
9f08349345
commit
71fb7241c6
2 changed files with 26 additions and 0 deletions
|
@ -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) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue