Changeset 203144 in webkit
- Timestamp:
- Jul 12, 2016, 5:45:11 PM (9 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r203143 r203144 1 2016-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 1 10 2016-07-12 Commit Queue <commit-queue@webkit.org> 2 11 -
trunk/Source/JavaScriptCore/interpreter/CLoopStackInlines.h
r203142 r203144 45 45 bool CLoopStack::isSafeToRecurse() const 46 46 { 47 void* reservationLimit = reinterpret_cast<int8_t*>(reservationTop() + m_ reservedZoneSizeInRegisters);47 void* reservationLimit = reinterpret_cast<int8_t*>(reservationTop() + m_softReservedZoneSizeInRegisters); 48 48 return !m_topCallFrame || (m_topCallFrame->topOfFrame() > reservationLimit); 49 49 }
Note:
See TracChangeset
for help on using the changeset viewer.