File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 11
11
#define V8_MAJOR_VERSION 6
12
12
#define V8_MINOR_VERSION 1
13
13
#define V8_BUILD_NUMBER 534
14
- #define V8_PATCH_LEVEL 43
14
+ #define V8_PATCH_LEVEL 44
15
15
16
16
// Use 1 for candidates and 0 otherwise.
17
17
// (Boolean macro values are not supported by all preprocessors.)
Original file line number Diff line number Diff line change @@ -1718,7 +1718,7 @@ void Heap::Scavenge() {
1718
1718
1719
1719
if (mark_compact_collector ()->sweeper ().sweeping_in_progress () &&
1720
1720
memory_allocator_->unmapper ()->NumberOfDelayedChunks () >
1721
- kMaxSemiSpaceSizeInKB / Page::kPageSize ) {
1721
+ static_cast < int >(new_space_-> MaximumCapacity () / Page::kPageSize ) ) {
1722
1722
mark_compact_collector ()->EnsureSweepingCompleted ();
1723
1723
}
1724
1724
You can’t perform that action at this time.
0 commit comments