diff options
author | 2022-12-05 18:49:40 +0000 | |
---|---|---|
committer | 2022-12-05 18:49:40 +0000 | |
commit | 33883a84f6aaa88aaed8a2c44d6996afe25d7943 (patch) | |
tree | 9a73c3561d33d5460b3992e9962244f33e2ea8ea /runtime/class_linker.cc | |
parent | 6e30187e0537aa05538f56a6bf36817195c2350c (diff) | |
parent | 485a714cbfa146528f7db9395197d855af43e188 (diff) |
Make native GC-root updation concurrent with userfaultfd am: 485a714cbf
Original change: https://android-review.googlesource.com/c/platform/art/+/2252614
Change-Id: I6c8460217acbe6b1e133fc48f7481087e9272170
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
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()) { |