summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorflacs <tilkax@gmail.com>2016-12-26 04:07:07 +0100
committerGitHub <noreply@github.com>2016-12-26 04:07:07 +0100
commit2d1bdae1f0989b80f52edf22e6c8ed77cc7ccdcf (patch)
tree68996f3ab35a48bae506e6fe91a7a26c589c5879 /Source/Core
parentfdf693f02f51f6b662dbc2f294a06f2ee774cb52 (diff)
parent042045012bafb457aa734ac8fe1c864280dadd23 (diff)
Merge pull request #4563 from lioncash/dspemit
DSPEmitter: Get rid of an unused member variable
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/DSP/Jit/DSPEmitter.cpp2
-rw-r--r--Source/Core/Core/DSP/Jit/DSPEmitter.h2
2 files changed, 0 insertions, 4 deletions
diff --git a/Source/Core/Core/DSP/Jit/DSPEmitter.cpp b/Source/Core/Core/DSP/Jit/DSPEmitter.cpp
index c1fb7c3156..627018adf5 100644
--- a/Source/Core/Core/DSP/Jit/DSPEmitter.cpp
+++ b/Source/Core/Core/DSP/Jit/DSPEmitter.cpp
@@ -24,8 +24,6 @@ using namespace Gen;
DSPEmitter::DSPEmitter() : gpr(*this), storeIndex(-1), storeIndex2(-1)
{
- m_compiledCode = nullptr;
-
AllocCodeSpace(COMPILED_CODE_SIZE);
blocks = new DSPCompiledCode[MAX_BLOCKS];
diff --git a/Source/Core/Core/DSP/Jit/DSPEmitter.h b/Source/Core/Core/DSP/Jit/DSPEmitter.h
index 094827141c..25aa8e3ceb 100644
--- a/Source/Core/Core/DSP/Jit/DSPEmitter.h
+++ b/Source/Core/Core/DSP/Jit/DSPEmitter.h
@@ -24,8 +24,6 @@ public:
DSPEmitter();
~DSPEmitter();
- Block m_compiledCode;
-
void EmitInstruction(UDSPInstruction inst);
void ClearIRAM();
void ClearIRAMandDSPJITCodespaceReset();