Title: [119925] trunk/Source/_javascript_Core
Revision
119925
Author
[email protected]
Date
2012-06-10 05:25:57 -0700 (Sun, 10 Jun 2012)

Log Message

Unreviewed. Build fix for !ENABLE(JIT) after r119844.

* runtime/Executable.h:
(ExecutableBase):
(JSC):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (119924 => 119925)


--- trunk/Source/_javascript_Core/ChangeLog	2012-06-10 12:09:37 UTC (rev 119924)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-06-10 12:25:57 UTC (rev 119925)
@@ -1,3 +1,11 @@
+2012-06-10  Patrick Gansterer  <[email protected]>
+
+        Unreviewed. Build fix for !ENABLE(JIT) after r119844.
+
+        * runtime/Executable.h:
+        (ExecutableBase):
+        (JSC):
+
 2012-06-09  Dominic Cooney  <[email protected]>
 
         [Chromium] Remove _javascript_Core dependencies from gyp

Modified: trunk/Source/_javascript_Core/runtime/Executable.h (119924 => 119925)


--- trunk/Source/_javascript_Core/runtime/Executable.h	2012-06-10 12:09:37 UTC (rev 119924)
+++ trunk/Source/_javascript_Core/runtime/Executable.h	2012-06-10 12:25:57 UTC (rev 119925)
@@ -176,11 +176,13 @@
                 return intrinsic();
             return NoIntrinsic;
         }
+#endif
 
     protected:
         ExecutableBase* m_prev;
         ExecutableBase* m_next;
 
+#if ENABLE(JIT)
         JITCode m_jitCodeForCall;
         JITCode m_jitCodeForConstruct;
         MacroAssemblerCodePtr m_jitCodeForCallWithArityCheck;
@@ -732,6 +734,7 @@
         return function->nativeFunction() == nativeFunction;
     }
 
+#if ENABLE(JIT)
     inline void ExecutableBase::clearCodeVirtual(ExecutableBase* executable)
     {
         switch (executable->structure()->typeInfo().type()) {
@@ -745,6 +748,7 @@
             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

Reply via email to