EE: remove dead code

This commit is contained in:
Gregory Hainaut 2016-02-08 09:52:31 +01:00
parent ea1a9943fc
commit fe0229aed0
2 changed files with 0 additions and 25 deletions

View File

@ -1006,21 +1006,6 @@ void iFlushCall(int flushtype)
}
}
//void testfpu()
//{
// int i;
// for(i = 0; i < 32; ++i ) {
// if( fpuRegs.fpr[i].UL== 0x7f800000 || fpuRegs.fpr[i].UL == 0xffc00000) {
// Console.WriteLn("bad fpu: %x %x %x", i, cpuRegs.cycle, g_lastpc);
// }
//
// if( VU0.VF[i].UL[0] == 0xffc00000 || //(VU0.VF[i].UL[1]&0xffc00000) == 0xffc00000 ||
// VU0.VF[i].UL[0] == 0x7f800000) {
// Console.WriteLn("bad vu0: %x %x %x", i, cpuRegs.cycle, g_lastpc);
// }
// }
//}
// Note: scaleblockcycles() scales s_nBlockCycles respective to the EECycleRate value for manipulating the cycles of current block recompiling.
// s_nBlockCycles is 3 bit fixed point. Divide by 8 when done!
// Scaling blocks under 40 cycles seems to produce countless problem, so let's try to avoid them.

View File

@ -26,9 +26,6 @@ using namespace x86Emitter;
#define REC_STORES
#define REC_LOADS
// Implemented at the bottom of the module:
void SetFastMemory(int bSetFast);
namespace R5900 {
namespace Dynarec {
namespace OpcodeImpl {
@ -96,11 +93,6 @@ using namespace Interpreter::OpcodeImpl;
__aligned16 u32 dummyValue[4];
void SetFastMemory(int bSetFast)
{
// nothing
}
//////////////////////////////////////////////////////////////////////////////////////////
//
void recLoad64( u32 bits, bool sign )
@ -637,5 +629,3 @@ void recSQC2()
using namespace R5900::Dynarec;
using namespace R5900::Dynarec::OpcodeImpl;
void SetFastMemory(int bSetFast) {}