Index: src/heap/objects-visiting-inl.h |
diff --git a/src/heap/objects-visiting-inl.h b/src/heap/objects-visiting-inl.h |
index 0103054822b1740df3902a875598912865aba68b..03baabb7b73c898df0d503fb79cf1100bd6b902c 100644 |
--- a/src/heap/objects-visiting-inl.h |
+++ b/src/heap/objects-visiting-inl.h |
@@ -789,8 +789,8 @@ void Code::CodeIterateBody(ObjectVisitor* v) { |
RelocInfo::ModeMask(RelocInfo::INTERNAL_REFERENCE) | |
RelocInfo::ModeMask(RelocInfo::INTERNAL_REFERENCE_ENCODED) | |
RelocInfo::ModeMask(RelocInfo::JS_RETURN) | |
- RelocInfo::ModeMask(RelocInfo::DEBUG_BREAK_SLOT) | |
- RelocInfo::ModeMask(RelocInfo::RUNTIME_ENTRY); |
+ RelocInfo::ModeMask(RelocInfo::RUNTIME_ENTRY) | |
+ RelocInfo::kDebugBreakSlotMask; |
// There are two places where we iterate code bodies: here and the |
// templated CodeIterateBody (below). They should be kept in sync. |
@@ -817,8 +817,8 @@ void Code::CodeIterateBody(Heap* heap) { |
RelocInfo::ModeMask(RelocInfo::INTERNAL_REFERENCE) | |
RelocInfo::ModeMask(RelocInfo::INTERNAL_REFERENCE_ENCODED) | |
RelocInfo::ModeMask(RelocInfo::JS_RETURN) | |
- RelocInfo::ModeMask(RelocInfo::DEBUG_BREAK_SLOT) | |
- RelocInfo::ModeMask(RelocInfo::RUNTIME_ENTRY); |
+ RelocInfo::ModeMask(RelocInfo::RUNTIME_ENTRY) | |
+ RelocInfo::kDebugBreakSlotMask; |
// There are two places where we iterate code bodies: here and the non- |
// templated CodeIterateBody (above). They should be kept in sync. |