Title: [224868] trunk/Source/_javascript_Core
Revision
224868
Author
mark....@apple.com
Date
2017-11-14 21:21:25 -0800 (Tue, 14 Nov 2017)

Log Message

Gardening: CLoop build fix after r224862.
https://bugs.webkit.org/show_bug.cgi?id=179699

Not reviewed..

* bytecode/CodeBlock.h:
(JSC::CodeBlock::calleeSaveSpaceAsVirtualRegisters):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (224867 => 224868)


--- trunk/Source/_javascript_Core/ChangeLog	2017-11-15 04:09:51 UTC (rev 224867)
+++ trunk/Source/_javascript_Core/ChangeLog	2017-11-15 05:21:25 UTC (rev 224868)
@@ -1,3 +1,13 @@
+2017-11-14  Mark Lam  <mark....@apple.com>
+
+        Gardening: CLoop build fix after r224862.
+        https://bugs.webkit.org/show_bug.cgi?id=179699
+
+        Not reviewed..
+
+        * bytecode/CodeBlock.h:
+        (JSC::CodeBlock::calleeSaveSpaceAsVirtualRegisters):
+
 2017-11-14  Carlos Garcia Campos  <cgar...@igalia.com>
 
         Move JSONValues to WTF and convert uses of InspectorValues.h to JSONValues.h

Modified: trunk/Source/_javascript_Core/bytecode/CodeBlock.h (224867 => 224868)


--- trunk/Source/_javascript_Core/bytecode/CodeBlock.h	2017-11-15 04:09:51 UTC (rev 224867)
+++ trunk/Source/_javascript_Core/bytecode/CodeBlock.h	2017-11-15 05:21:25 UTC (rev 224868)
@@ -782,6 +782,7 @@
 #else // No JIT
     static unsigned numberOfLLIntBaselineCalleeSaveRegisters() { return 0; }
     static size_t llintBaselineCalleeSaveSpaceAsVirtualRegisters() { return 0; };
+    size_t calleeSaveSpaceAsVirtualRegisters() { return 0; }
     void optimizeAfterWarmUp() { }
     unsigned numberOfDFGCompiles() { return 0; }
 #endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to