Kill FINAL ifdef entirely.

We've never turned off the disasm pointer and it's probably not worthwhile
at this point...
This commit is contained in:
Unknown W. Brackets 2015-09-20 11:39:46 -07:00
parent ca4ffb5fd3
commit ea271dd61d

View file

@ -69,9 +69,7 @@ struct MIPSInstruction {
MipsEncoding altEncoding;
const char *name;
MIPSComp::MIPSCompileFunc compile;
#ifndef FINAL
MIPSDisFunc disasm;
#endif
MIPSInterpretFunc interpret;
//MIPSInstructionInfo information;
MIPSInfo flags;
@ -80,13 +78,8 @@ struct MIPSInstruction {
#define INVALID {Inval}
#define INVALID_X_8 INVALID,INVALID,INVALID,INVALID,INVALID,INVALID,INVALID,INVALID
#ifndef FINAL
#define ENCODING(a) {a}
#define INSTR(name, comp, dis, inter, flags) {Instruc, name, comp, dis, inter, MIPSInfo(flags)}
#else
#define ENCODING(a) {a}
#define INSTR(name, comp, dis, inter, flags) {Instruc, comp, inter, flags}
#endif
#ifdef ARM
#define JITFUNC(f) (&ArmJit::f)