| Index: src/heap/mark-compact.cc
|
| diff --git a/src/heap/mark-compact.cc b/src/heap/mark-compact.cc
|
| index 77d084266264fbd78f56bc16115818a92b223ff4..1eee00dad37b64a531e33bd5c5dfb3aa0371175c 100644
|
| --- a/src/heap/mark-compact.cc
|
| +++ b/src/heap/mark-compact.cc
|
| @@ -4237,17 +4237,6 @@ void MarkCompactCollector::EnableCodeFlushing(bool enable) {
|
| }
|
|
|
|
|
| -// TODO(1466) ReportDeleteIfNeeded is not called currently.
|
| -// Our profiling tools do not expect intersections between
|
| -// code objects. We should either reenable it or change our tools.
|
| -void MarkCompactCollector::ReportDeleteIfNeeded(HeapObject* obj,
|
| - Isolate* isolate) {
|
| - if (obj->IsCode()) {
|
| - PROFILE(isolate, CodeDeleteEvent(obj->address()));
|
| - }
|
| -}
|
| -
|
| -
|
| Isolate* MarkCompactCollector::isolate() const { return heap_->isolate(); }
|
|
|
|
|
|
|