From ea271dd61df1d7dbdfed6aa1464c2dca0e3f8058 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sun, 20 Sep 2015 11:39:46 -0700 Subject: [PATCH] Kill FINAL ifdef entirely. We've never turned off the disasm pointer and it's probably not worthwhile at this point... --- Core/MIPS/MIPSTables.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Core/MIPS/MIPSTables.cpp b/Core/MIPS/MIPSTables.cpp index 984f1030fb..cc20248447 100644 --- a/Core/MIPS/MIPSTables.cpp +++ b/Core/MIPS/MIPSTables.cpp @@ -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)