summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/interpreter/AbstractPC.h
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@digia.com>2012-09-25 13:02:02 +0200
committerSimon Hausmann <simon.hausmann@digia.com>2012-09-25 13:02:02 +0200
commit715be629d51174233403237bfc563cf150087dc8 (patch)
tree4cff72df808db977624338b0a38d8b6d1bd73c57 /Source/JavaScriptCore/interpreter/AbstractPC.h
parentdc6262b587c71c14e30d93e57ed812e36a79a33e (diff)
downloadqtwebkit-715be629d51174233403237bfc563cf150087dc8.tar.gz
Imported WebKit commit ce614b0924ba46f78d4435e28ff93c8525fbb7cc (http://svn.webkit.org/repository/webkit/trunk@129485)
New snapshot that includes MingW build fixes
Diffstat (limited to 'Source/JavaScriptCore/interpreter/AbstractPC.h')
-rw-r--r--Source/JavaScriptCore/interpreter/AbstractPC.h15
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(); }