diff options
Diffstat (limited to 'runtime/class_linker.cc')
-rw-r--r-- | runtime/class_linker.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/class_linker.cc b/runtime/class_linker.cc index f94d791ffd..736882546f 100644 --- a/runtime/class_linker.cc +++ b/runtime/class_linker.cc @@ -3515,7 +3515,7 @@ static void LinkCode(ClassLinker* class_linker, } // Method shouldn't have already been linked. - DCHECK(method->GetEntryPointFromQuickCompiledCode() == nullptr); + DCHECK_EQ(method->GetEntryPointFromQuickCompiledCode(), nullptr); DCHECK(!method->GetDeclaringClass()->IsVisiblyInitialized()); // Actually ClassStatus::Idx. if (!method->IsInvokable()) { |