File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 36
36
37
37
# Reset this number to 0 on major V8 upgrades.
38
38
# Increment by one for each non-official patch applied to deps/v8.
39
- 'v8_embedder_string' : '-node.9 ' ,
39
+ 'v8_embedder_string' : '-node.10 ' ,
40
40
41
41
##### V8 defaults for Node.js #####
42
42
Original file line number Diff line number Diff line change @@ -2290,7 +2290,9 @@ bool MarkCompactCollector::TransitionArrayNeedsCompaction(
2290
2290
#ifdef DEBUG
2291
2291
// Targets can only be dead iff this array is fully deserialized.
2292
2292
for (int i = 0 ; i < num_transitions; ++i) {
2293
- DCHECK (!non_atomic_marking_state ()->IsWhite (transitions.GetTarget (i)));
2293
+ DCHECK_IMPLIES (
2294
+ !transitions.GetRawTarget (i).IsSmi (),
2295
+ !non_atomic_marking_state ()->IsWhite (transitions.GetTarget (i)));
2294
2296
}
2295
2297
#endif
2296
2298
return false ;
You can’t perform that action at this time.
0 commit comments