MIPS: Fix a compiler warning from the eret instruction.

This commit is contained in:
Gabe Black 2012-01-28 07:24:23 -08:00
parent c3d41a2def
commit eab5c60286

View file

@ -88,14 +88,14 @@ def template CP0Execute {{
if (isCoprocessorEnabled(xc, 0)) {
%(code)s;
if(fault == NoFault)
{
%(op_wb)s;
}
} else {
fault = new CoprocessorUnusableFault(0);
}
if(fault == NoFault)
{
%(op_wb)s;
}
return fault;
}
}};