Changeset 203144 in webkit


Ignore:
Timestamp:
Jul 12, 2016, 5:45:11 PM (9 years ago)
Author:
mark.lam@apple.com
Message:

Gardening: C Loop build fix after r203142.

Not reviewed.

  • interpreter/CLoopStackInlines.h:

(JSC::CLoopStack::isSafeToRecurse):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r203143 r203144  
     12016-07-12  Mark Lam  <mark.lam@apple.com>
     2
     3        Gardening: C Loop build fix after r203142.
     4
     5        Not reviewed.
     6
     7        * interpreter/CLoopStackInlines.h:
     8        (JSC::CLoopStack::isSafeToRecurse):
     9
    1102016-07-12  Commit Queue  <commit-queue@webkit.org>
    211
  • trunk/Source/JavaScriptCore/interpreter/CLoopStackInlines.h

    r203142 r203144  
    4545bool CLoopStack::isSafeToRecurse() const
    4646{
    47     void* reservationLimit = reinterpret_cast<int8_t*>(reservationTop() + m_reservedZoneSizeInRegisters);
     47    void* reservationLimit = reinterpret_cast<int8_t*>(reservationTop() + m_softReservedZoneSizeInRegisters);
    4848    return !m_topCallFrame || (m_topCallFrame->topOfFrame() > reservationLimit);
    4949}
Note: See TracChangeset for help on using the changeset viewer.