Ignore:
Timestamp:
Jan 27, 2015, 1:34:32 PM (10 years ago)
Author:
[email protected]
Message:

Unreviewed, rolling out r179192.
https://bugs.webkit.org/show_bug.cgi?id=140953

Caused numerous layout test failures (Requested by mattbaker_
on #webkit).

Reverted changeset:

"Use FastMalloc (bmalloc) instead of BlockAllocator for GC
pages"
https://bugs.webkit.org/show_bug.cgi?id=140900
http://trac.webkit.org/changeset/179192

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/heap/MarkStack.cpp

    r179192 r179211  
    3131namespace JSC {
    3232
    33 MarkStackArray::MarkStackArray()
    34     : GCSegmentedArray<const JSCell*>()
     33MarkStackArray::MarkStackArray(BlockAllocator& blockAllocator)
     34    : GCSegmentedArray<const JSCell*>(blockAllocator)
    3535{
    3636}
Note: See TracChangeset for help on using the changeset viewer.