diff options
Diffstat (limited to 'compiler/optimizing/inliner.cc')
| -rw-r--r-- | compiler/optimizing/inliner.cc | 3 | 
1 files changed, 0 insertions, 3 deletions
diff --git a/compiler/optimizing/inliner.cc b/compiler/optimizing/inliner.cc index 07d0dd6b49..ea613b2b01 100644 --- a/compiler/optimizing/inliner.cc +++ b/compiler/optimizing/inliner.cc @@ -120,9 +120,6 @@ static ArtMethod* FindVirtualOrInterfaceTarget(HInvoke* invoke, ArtMethod* resol      // Statically knowing that the receiver has an interface type cannot      // help us find what is the target method.      return nullptr; -  } else if (!resolved_method->GetDeclaringClass()->IsAssignableFrom(info.GetTypeHandle().Get())) { -    // The method that we're trying to call is not in the receiver's class or super classes. -    return nullptr;    }    ClassLinker* cl = Runtime::Current()->GetClassLinker();  |