Title: [203144] trunk/Source/_javascript_Core
Revision
203144
Author
[email protected]
Date
2016-07-12 17:45:11 -0700 (Tue, 12 Jul 2016)

Log Message

Gardening: C Loop build fix after r203142.

Not reviewed.

* interpreter/CLoopStackInlines.h:
(JSC::CLoopStack::isSafeToRecurse):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (203143 => 203144)


--- trunk/Source/_javascript_Core/ChangeLog	2016-07-13 00:20:43 UTC (rev 203143)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-07-13 00:45:11 UTC (rev 203144)
@@ -1,3 +1,12 @@
+2016-07-12  Mark Lam  <[email protected]>
+
+        Gardening: C Loop build fix after r203142.
+
+        Not reviewed.
+
+        * interpreter/CLoopStackInlines.h:
+        (JSC::CLoopStack::isSafeToRecurse):
+
 2016-07-12  Commit Queue  <[email protected]>
 
         Unreviewed, rolling out r203131.

Modified: trunk/Source/_javascript_Core/interpreter/CLoopStackInlines.h (203143 => 203144)


--- trunk/Source/_javascript_Core/interpreter/CLoopStackInlines.h	2016-07-13 00:20:43 UTC (rev 203143)
+++ trunk/Source/_javascript_Core/interpreter/CLoopStackInlines.h	2016-07-13 00:45:11 UTC (rev 203144)
@@ -44,7 +44,7 @@
 
 bool CLoopStack::isSafeToRecurse() const
 {
-    void* reservationLimit = reinterpret_cast<int8_t*>(reservationTop() + m_reservedZoneSizeInRegisters);
+    void* reservationLimit = reinterpret_cast<int8_t*>(reservationTop() + m_softReservedZoneSizeInRegisters);
     return !m_topCallFrame || (m_topCallFrame->topOfFrame() > reservationLimit);
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to