| Index: runtime/vm/isolate.h
|
| diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
|
| index 0afc840e6a34e8c2b52512e7833a2ad668e7e107..a9bbc0653bceceadb693a79c13379ddc6f3d50f9 100644
|
| --- a/runtime/vm/isolate.h
|
| +++ b/runtime/vm/isolate.h
|
| @@ -582,15 +582,6 @@ class Isolate : public BaseIsolate {
|
| deopt_context_ = value;
|
| }
|
|
|
| - int32_t edge_counter_increment_size() const {
|
| - return edge_counter_increment_size_;
|
| - }
|
| - void set_edge_counter_increment_size(int32_t size) {
|
| - ASSERT(edge_counter_increment_size_ == -1);
|
| - ASSERT(size >= 0);
|
| - edge_counter_increment_size_ = size;
|
| - }
|
| -
|
| void UpdateLastAllocationProfileAccumulatorResetTimestamp() {
|
| last_allocationprofile_accumulator_reset_timestamp_ =
|
| OS::GetCurrentTimeMillis();
|
| @@ -862,7 +853,6 @@ class Isolate : public BaseIsolate {
|
| Dart_GcEpilogueCallback gc_epilogue_callback_;
|
| intptr_t defer_finalization_count_;
|
| DeoptContext* deopt_context_;
|
| - int32_t edge_counter_increment_size_;
|
|
|
| CompilerStats* compiler_stats_;
|
|
|
|
|