summaryrefslogtreecommitdiff
path: root/compiler/linker/relative_patcher.h
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/linker/relative_patcher.h')
-rw-r--r--compiler/linker/relative_patcher.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/linker/relative_patcher.h b/compiler/linker/relative_patcher.h
index ba374512a1..a22b9f2c2d 100644
--- a/compiler/linker/relative_patcher.h
+++ b/compiler/linker/relative_patcher.h
@@ -104,10 +104,10 @@ class RelativePatcher {
uint32_t target_offset) = 0;
// Patch a reference to a dex cache location.
- virtual void PatchDexCacheReference(std::vector<uint8_t>* code,
- const LinkerPatch& patch,
- uint32_t patch_offset,
- uint32_t target_offset) = 0;
+ virtual void PatchPcRelativeReference(std::vector<uint8_t>* code,
+ const LinkerPatch& patch,
+ uint32_t patch_offset,
+ uint32_t target_offset) = 0;
protected:
RelativePatcher()