diff options
Diffstat (limited to 'Source/JavaScriptCore/interpreter/AbstractPC.h')
-rw-r--r-- | Source/JavaScriptCore/interpreter/AbstractPC.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/Source/JavaScriptCore/interpreter/AbstractPC.h b/Source/JavaScriptCore/interpreter/AbstractPC.h index 5ed74472e..09a6db8ea 100644 --- a/Source/JavaScriptCore/interpreter/AbstractPC.h +++ b/Source/JavaScriptCore/interpreter/AbstractPC.h @@ -60,21 +60,6 @@ public: } #endif -#if ENABLE(CLASSIC_INTERPRETER) - AbstractPC(Instruction* vPC) - : m_pointer(vPC) - , m_mode(Interpreter) - { - } - - bool hasInterpreterReturnAddress() const { return m_mode == Interpreter; } - Instruction* interpreterReturnAddress() const - { - ASSERT(hasInterpreterReturnAddress()); - return static_cast<Instruction*>(m_pointer); - } -#endif - bool isSet() const { return m_mode != None; } bool operator!() const { return !isSet(); } |