diff options
Diffstat (limited to 'compiler/linker/relative_patcher.cc')
-rw-r--r-- | compiler/linker/relative_patcher.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler/linker/relative_patcher.cc b/compiler/linker/relative_patcher.cc index 71f38b408a..8ee87aa339 100644 --- a/compiler/linker/relative_patcher.cc +++ b/compiler/linker/relative_patcher.cc @@ -38,6 +38,10 @@ std::unique_ptr<RelativePatcher> RelativePatcher::Create( return offset; // No space reserved; no patches expected. } + uint32_t ReserveSpaceEnd(uint32_t offset) OVERRIDE { + return offset; // No space reserved; no patches expected. + } + uint32_t WriteThunks(OutputStream* out ATTRIBUTE_UNUSED, uint32_t offset) OVERRIDE { return offset; // No thunks added; no patches expected. } |