diff options
Diffstat (limited to 'runtime/debugger.cc')
-rw-r--r-- | runtime/debugger.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/debugger.cc b/runtime/debugger.cc index ce3172c2ff..7fb199c0eb 100644 --- a/runtime/debugger.cc +++ b/runtime/debugger.cc @@ -4339,7 +4339,7 @@ void Dbg::SetAllocTrackingEnabled(bool enable) { recent_allocation_records_ = new AllocRecord[alloc_record_max_]; CHECK(recent_allocation_records_ != NULL); } - Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints(false); + Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints(); } else { { ScopedObjectAccess soa(self); // For type_cache_.Clear(); @@ -4355,7 +4355,7 @@ void Dbg::SetAllocTrackingEnabled(bool enable) { type_cache_.Clear(); } // If an allocation comes in before we uninstrument, we will safely drop it on the floor. - Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints(false); + Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints(); } } |