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

Unified Diff: src/heap/concurrent-marking-deque.h

Issue 2872323002: [heap] Color object black on unsafe layout change. (Closed)
Patch Set: fix unused variable Created 3 years, 7 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 | src/heap/heap.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap/concurrent-marking-deque.h
diff --git a/src/heap/concurrent-marking-deque.h b/src/heap/concurrent-marking-deque.h
index daa0e2ba4c1ce9129c648eb7ba64881748e30bbb..1490923a2f4a1196d02cec3fb212d49f58c1de25 100644
--- a/src/heap/concurrent-marking-deque.h
+++ b/src/heap/concurrent-marking-deque.h
@@ -47,8 +47,6 @@ class ConcurrentMarkingDeque {
// deque. The concurrent thread can push to both deques.
bool Push(HeapObject* object, MarkingThread thread = MarkingThread::kMain,
TargetDeque target = TargetDeque::kShared) {
- DCHECK_IMPLIES(thread == MarkingThread::kMain,
- target == TargetDeque::kShared);
switch (target) {
case TargetDeque::kShared:
shared_deque_.Push(object);
« no previous file with comments | « no previous file | src/heap/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698