Fix calling of Interpreter routines in iR5900Branch.cpp when EE_CONST_PROP is off.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2458 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
ramapcsx2 2010-01-20 17:17:21 +00:00
parent 59ec816427
commit bb14f0ab70
1 changed files with 8 additions and 8 deletions

View File

@ -733,7 +733,7 @@ void recBLTZAL( void )
MOV32ItoM( (int)&cpuRegs.code, cpuRegs.code );
MOV32ItoM( (int)&cpuRegs.pc, pc );
iFlushCall(FLUSH_EVERYTHING);
CALLFunc( (int)BLTZAL );
CALLFunc( (uptr)R5900::Interpreter::OpcodeImpl::BLTZAL );
branch = 2;
}
@ -743,7 +743,7 @@ void recBGEZAL( void )
MOV32ItoM( (int)&cpuRegs.code, cpuRegs.code );
MOV32ItoM( (int)&cpuRegs.pc, pc );
iFlushCall(FLUSH_EVERYTHING);
CALLFunc( (int)BGEZAL );
CALLFunc( (uptr)R5900::Interpreter::OpcodeImpl::BGEZAL );
branch = 2;
}
@ -753,7 +753,7 @@ void recBLTZALL( void )
MOV32ItoM( (int)&cpuRegs.code, cpuRegs.code );
MOV32ItoM( (int)&cpuRegs.pc, pc );
iFlushCall(FLUSH_EVERYTHING);
CALLFunc( (int)BLTZALL );
CALLFunc( (uptr)R5900::Interpreter::OpcodeImpl::BLTZALL );
branch = 2;
}
@ -763,7 +763,7 @@ void recBGEZALL( void )
MOV32ItoM( (int)&cpuRegs.code, cpuRegs.code );
MOV32ItoM( (int)&cpuRegs.pc, pc );
iFlushCall(FLUSH_EVERYTHING);
CALLFunc( (int)BGEZALL );
CALLFunc( (uptr)R5900::Interpreter::OpcodeImpl::BGEZALL );
branch = 2;
}
@ -993,7 +993,7 @@ void recBLTZ( void )
MOV32ItoM( (int)&cpuRegs.code, cpuRegs.code );
MOV32ItoM( (int)&cpuRegs.pc, pc );
iFlushCall(FLUSH_EVERYTHING);
CALLFunc( (int)BLTZ );
CALLFunc( (uptr)R5900::Interpreter::OpcodeImpl::BLTZ );
branch = 2;
}
@ -1002,7 +1002,7 @@ void recBGEZ( void )
MOV32ItoM( (int)&cpuRegs.code, cpuRegs.code );
MOV32ItoM( (int)&cpuRegs.pc, pc );
iFlushCall(FLUSH_EVERYTHING);
CALLFunc( (int)BGEZ );
CALLFunc( (uptr)R5900::Interpreter::OpcodeImpl::BGEZ );
branch = 2;
}
@ -1011,7 +1011,7 @@ void recBLTZL( void )
MOV32ItoM( (int)&cpuRegs.code, cpuRegs.code );
MOV32ItoM( (int)&cpuRegs.pc, pc );
iFlushCall(FLUSH_EVERYTHING);
CALLFunc( (int)BLTZL );
CALLFunc( (uptr)R5900::Interpreter::OpcodeImpl::BLTZL );
branch = 2;
}
@ -1020,7 +1020,7 @@ void recBGEZL( void )
MOV32ItoM( (int)&cpuRegs.code, cpuRegs.code );
MOV32ItoM( (int)&cpuRegs.pc, pc );
iFlushCall(FLUSH_EVERYTHING);
CALLFunc( (int)BGEZL );
CALLFunc( (uptr)R5900::Interpreter::OpcodeImpl::BGEZL );
branch = 2;
}