Title: [165157] trunk/Source/_javascript_Core
Revision
165157
Author
[email protected]
Date
2014-03-05 18:26:28 -0800 (Wed, 05 Mar 2014)

Log Message

FTL build fix attempt after r165141.

* ftl/FTLCompile.cpp:
(JSC::FTL::fixFunctionBasedOnStackMaps):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (165156 => 165157)


--- trunk/Source/_javascript_Core/ChangeLog	2014-03-06 02:23:07 UTC (rev 165156)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-03-06 02:26:28 UTC (rev 165157)
@@ -1,3 +1,10 @@
+2014-03-05  Ryosuke Niwa  <[email protected]>
+
+        FTL build fix attempt after r165141.
+
+        * ftl/FTLCompile.cpp:
+        (JSC::FTL::fixFunctionBasedOnStackMaps):
+
 2014-03-05  Gavin Barraclough  <[email protected]>
 
         https://bugs.webkit.org/show_bug.cgi?id=128625

Modified: trunk/Source/_javascript_Core/ftl/FTLCompile.cpp (165156 => 165157)


--- trunk/Source/_javascript_Core/ftl/FTLCompile.cpp	2014-03-06 02:23:07 UTC (rev 165156)
+++ trunk/Source/_javascript_Core/ftl/FTLCompile.cpp	2014-03-06 02:26:28 UTC (rev 165157)
@@ -308,7 +308,7 @@
                 
                 JITGetByIdGenerator gen(
                     codeBlock, getById.codeOrigin(), usedRegisters, JSValueRegs(base),
-                    JSValueRegs(result), false);
+                    JSValueRegs(result), NeedToSpill);
                 
                 MacroAssembler::Label begin = slowPathJIT.label();
                 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to