| Index: runtime/vm/isolate.h
|
| diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
|
| index 407a9f8d44256acee161098392c44cd8ccc320bd..e0059cff6e26a267d1351cd1994ef19d2537407c 100644
|
| --- a/runtime/vm/isolate.h
|
| +++ b/runtime/vm/isolate.h
|
| @@ -405,10 +405,6 @@ class Isolate : public BaseIsolate {
|
| return (deopt_id % kDeoptIdStep) == kDeoptIdAfterOffset;
|
| }
|
|
|
| - RawArray* ic_data_array() const { return ic_data_array_; }
|
| - void set_ic_data_array(RawArray* value) { ic_data_array_ = value; }
|
| - ICData* GetICDataForDeoptId(intptr_t deopt_id) const;
|
| -
|
| Mutex* mutex() const { return mutex_; }
|
|
|
| Debugger* debugger() const { return debugger_; }
|
| @@ -615,7 +611,6 @@ class Isolate : public BaseIsolate {
|
| LongJump* long_jump_base_;
|
| TimerList timer_list_;
|
| intptr_t deopt_id_;
|
| - RawArray* ic_data_array_;
|
| Mutex* mutex_; // protects stack_limit_ and saved_stack_limit_.
|
| uword stack_limit_;
|
| uword saved_stack_limit_;
|
|
|