diff options
Diffstat (limited to 'lld/ELF/Target.h')
-rw-r--r-- | lld/ELF/Target.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/ELF/Target.h b/lld/ELF/Target.h index a5ee37d9d54..c1efb20c38d 100644 --- a/lld/ELF/Target.h +++ b/lld/ELF/Target.h @@ -23,7 +23,7 @@ class SymbolBody; class TargetInfo { public: - uint64_t getVAStart() const; + uint64_t getImageBase() const; virtual bool isTlsInitialExecRel(uint32_t Type) const; virtual bool isTlsLocalDynamicRel(uint32_t Type) const; virtual bool isTlsGlobalDynamicRel(uint32_t Type) const; @@ -70,7 +70,7 @@ public: // Given that, the smallest value that can be used in here is 0x10000. // If using 2MB pages, the smallest page aligned address that works is // 0x200000, but it looks like every OS uses 4k pages for executables. - uint64_t VAStart = 0x10000; + uint64_t ImageBase = 0x10000; uint32_t CopyRel; uint32_t GotRel; |