diff options
author | 2024-11-06 12:42:18 +0000 | |
---|---|---|
committer | 2024-11-06 15:08:37 +0000 | |
commit | a687066b7043dbc1be8f85001eeb0f341cd25885 (patch) | |
tree | 4a718fe531d822ab7b065b62549fdaff7d0ffcde /compiler/linker/linker_patch.h | |
parent | 6b32080cb3f09c786128043df88e53fb344b7a15 (diff) |
arm64: Store resolved MethodType-s in .bss.
Bug: 297147201
Test: art/test/testrunner/testrunner.py --target --64 --jit
Test: art/test/testrunner/testrunner.py --target --64
Change-Id: Iecd5575e5eb0d161cbc338f63f29cb52b0c23177
Diffstat (limited to 'compiler/linker/linker_patch.h')
-rw-r--r-- | compiler/linker/linker_patch.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/linker/linker_patch.h b/compiler/linker/linker_patch.h index 4eb0782d52..d73d88dcb2 100644 --- a/compiler/linker/linker_patch.h +++ b/compiler/linker/linker_patch.h @@ -295,7 +295,8 @@ class LinkerPatch { patch_type_ == Type::kPublicTypeBssEntry || patch_type_ == Type::kPackageTypeBssEntry || patch_type_ == Type::kStringRelative || - patch_type_ == Type::kStringBssEntry); + patch_type_ == Type::kStringBssEntry || + patch_type_ == Type::kMethodTypeBssEntry); return pc_insn_offset_; } |