Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(329)

Unified Diff: src/heap/heap.cc

Issue 1050033003: Revert of Relax assert a little to fix flake on regress-3976 (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap/heap.cc
diff --git a/src/heap/heap.cc b/src/heap/heap.cc
index c4a368ea5b87cf564a5263c56dc05de002966d93..e89aafa900f5464348e4b934189fc00326fe5c09 100644
--- a/src/heap/heap.cc
+++ b/src/heap/heap.cc
@@ -5656,7 +5656,7 @@
class CheckHandleCountVisitor : public ObjectVisitor {
public:
CheckHandleCountVisitor() : handle_count_(0) {}
- ~CheckHandleCountVisitor() { CHECK(handle_count_ < 2000); }
+ ~CheckHandleCountVisitor() { CHECK(handle_count_ < 1000); }
void VisitPointers(Object** start, Object** end) {
handle_count_ += end - start;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698