Merge pull request #2977 from lioncash/unused

General: Remove unimplemented function prototypes
This commit is contained in:
comex
2015-09-05 22:20:47 -04:00
29 changed files with 2 additions and 71 deletions

View File

@ -20,7 +20,6 @@ class Interpreter : public CPUCoreBase
public:
void Init() override;
void Shutdown() override;
void Reset();
void SingleStep() override;
int SingleStepInner();
@ -28,8 +27,6 @@ public:
void ClearCache() override;
const char *GetName() override;
void Log();
static bool m_EndBlock;
static void unknown_instruction(UGeckoInstruction _inst);
@ -269,7 +266,6 @@ public:
static void crxor(UGeckoInstruction _inst);
static void mcrf(UGeckoInstruction _inst);
static void rfi(UGeckoInstruction _inst);
static void rfid(UGeckoInstruction _inst);
static void sync(UGeckoInstruction _inst);
static void isync(UGeckoInstruction _inst);

View File

@ -94,13 +94,9 @@ public:
void reg_imm(UGeckoInstruction inst);
void ps_sel(UGeckoInstruction inst);
void ps_mr(UGeckoInstruction inst);
void ps_sign(UGeckoInstruction inst); //aggregate
void ps_arith(UGeckoInstruction inst); //aggregate
void ps_mergeXX(UGeckoInstruction inst);
void ps_maddXX(UGeckoInstruction inst);
void ps_rsqrte(UGeckoInstruction inst);
void ps_sum(UGeckoInstruction inst);
void ps_muls(UGeckoInstruction inst);

View File

@ -35,7 +35,6 @@ public:
bool Load(const std::string& filename); // Does not clear. Remember to clear first if that's what you want.
bool Save(const std::string& filename);
void Clean(const char *prefix);
void Clear();
void List();