| Index: runtime/vm/object.cc
|
| diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
|
| index 4cb204d3e98847c69f2c437964968dc5c6a10eaa..13d5794a73bc33a5436ef18601563e760e79cf90 100644
|
| --- a/runtime/vm/object.cc
|
| +++ b/runtime/vm/object.cc
|
| @@ -13753,19 +13753,6 @@ bool ICData::HasOneTarget() const {
|
| }
|
|
|
|
|
| -bool ICData::HasOnlyDispatcherOrImplicitAccessorTargets() const {
|
| - const intptr_t len = NumberOfChecks();
|
| - Function& target = Function::Handle();
|
| - for (intptr_t i = 0; i < len; i++) {
|
| - target = GetTargetAt(i);
|
| - if (!target.IsDispatcherOrImplicitAccessor()) {
|
| - return false;
|
| - }
|
| - }
|
| - return true;
|
| -}
|
| -
|
| -
|
| void ICData::GetUsedCidsForTwoArgs(GrowableArray<intptr_t>* first,
|
| GrowableArray<intptr_t>* second) const {
|
| ASSERT(NumArgsTested() == 2);
|
|
|