Title: [144210] trunk/Source/_javascript_Core
Revision
144210
Author
[email protected]
Date
2013-02-27 10:34:33 -0800 (Wed, 27 Feb 2013)

Log Message

Fix build when DFG_JIT is not enabled
https://bugs.webkit.org/show_bug.cgi?id=110991

Patch by Julien Brianceau <[email protected]> on 2013-02-27
Reviewed by Csaba Osztrogonác.

* jit/JIT.h:
(JSC::JIT::canBeOptimizedOrInlined):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (144209 => 144210)


--- trunk/Source/_javascript_Core/ChangeLog	2013-02-27 18:19:04 UTC (rev 144209)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-02-27 18:34:33 UTC (rev 144210)
@@ -1,3 +1,13 @@
+2013-02-27  Julien Brianceau   <[email protected]>
+
+        Fix build when DFG_JIT is not enabled
+        https://bugs.webkit.org/show_bug.cgi?id=110991
+
+        Reviewed by Csaba Osztrogonác.
+
+        * jit/JIT.h:
+        (JSC::JIT::canBeOptimizedOrInlined):
+
 2013-02-27  Simon Hausmann  <[email protected]>
 
         [Qt][Mac] Fix massive parallel builds

Modified: trunk/Source/_javascript_Core/jit/JIT.h (144209 => 144210)


--- trunk/Source/_javascript_Core/jit/JIT.h	2013-02-27 18:19:04 UTC (rev 144209)
+++ trunk/Source/_javascript_Core/jit/JIT.h	2013-02-27 18:34:33 UTC (rev 144210)
@@ -901,6 +901,7 @@
         bool shouldEmitProfiling() { return m_shouldEmitProfiling; }
 #else
         bool canBeOptimized() { return false; }
+        bool canBeOptimizedOrInlined() { return false; }
         // Enables use of value profiler with tiered compilation turned off,
         // in which case all code gets profiled.
         bool shouldEmitProfiling() { return true; }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to