Title: [119926] trunk/Source/_javascript_Core
- Revision
- 119926
- Author
- [email protected]
- Date
- 2012-06-10 05:49:32 -0700 (Sun, 10 Jun 2012)
Log Message
Unreviewed. Build fix for !ENABLE(JIT) after r119844 and r119925.
* runtime/Executable.h:
(ExecutableBase):
(JSC::ExecutableBase::clearCodeVirtual):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (119925 => 119926)
--- trunk/Source/_javascript_Core/ChangeLog 2012-06-10 12:25:57 UTC (rev 119925)
+++ trunk/Source/_javascript_Core/ChangeLog 2012-06-10 12:49:32 UTC (rev 119926)
@@ -1,5 +1,13 @@
2012-06-10 Patrick Gansterer <[email protected]>
+ Unreviewed. Build fix for !ENABLE(JIT) after r119844 and r119925.
+
+ * runtime/Executable.h:
+ (ExecutableBase):
+ (JSC::ExecutableBase::clearCodeVirtual):
+
+2012-06-10 Patrick Gansterer <[email protected]>
+
Unreviewed. Build fix for !ENABLE(JIT) after r119844.
* runtime/Executable.h:
Modified: trunk/Source/_javascript_Core/runtime/Executable.h (119925 => 119926)
--- trunk/Source/_javascript_Core/runtime/Executable.h 2012-06-10 12:25:57 UTC (rev 119925)
+++ trunk/Source/_javascript_Core/runtime/Executable.h 2012-06-10 12:49:32 UTC (rev 119926)
@@ -103,10 +103,10 @@
int m_numParametersForCall;
int m_numParametersForConstruct;
-#if ENABLE(JIT)
public:
static void clearCodeVirtual(ExecutableBase*);
+#if ENABLE(JIT)
JITCode& generatedJITCodeForCall()
{
ASSERT(m_jitCodeForCall);
@@ -734,7 +734,6 @@
return function->nativeFunction() == nativeFunction;
}
-#if ENABLE(JIT)
inline void ExecutableBase::clearCodeVirtual(ExecutableBase* executable)
{
switch (executable->structure()->typeInfo().type()) {
@@ -748,7 +747,6 @@
return jsCast<NativeExecutable*>(executable)->clearCode();
}
}
-#endif
inline void ScriptExecutable::unlinkCalls()
{
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes