diff options
Diffstat (limited to 'runtime/class_linker.cc')
-rw-r--r-- | runtime/class_linker.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/class_linker.cc b/runtime/class_linker.cc index eb75c6bdaf..0ba63ad0c4 100644 --- a/runtime/class_linker.cc +++ b/runtime/class_linker.cc @@ -8039,6 +8039,7 @@ void ClassLinker::LinkMethodsHelper<kPointerSize>::ReallocMethods(ObjPtr<mirror: constexpr uint32_t kSetFlags = kAccDefault | kAccAbstract | kAccCopied; constexpr uint32_t kMaskFlags = ~(kAccSkipAccessChecks | kAccSingleImplementation); new_method.SetAccessFlags((access_flags | kSetFlags) & kMaskFlags); + new_method.SetDataPtrSize(nullptr, kPointerSize); DCHECK(new_method.IsDefaultConflicting()); DCHECK(!new_method.IsAbstract()); // The actual method might or might not be marked abstract since we just copied it from |