diff options
-rw-r--r-- | lld/ELF/LinkerScript.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/LinkerScript.h b/lld/ELF/LinkerScript.h index e41e6743995..9452e775aa0 100644 --- a/lld/ELF/LinkerScript.h +++ b/lld/ELF/LinkerScript.h @@ -239,9 +239,9 @@ protected: public: bool hasPhdrsCommands() { return !Opt.PhdrsCommands.empty(); } + uint64_t getDot() { return Dot; } virtual uint64_t getSymbolValue(const Twine &Loc, StringRef S) = 0; - uint64_t getDot() { return getSymbolValue("", "."); } virtual bool isDefined(StringRef S) = 0; virtual bool isAbsolute(StringRef S) = 0; virtual OutputSection *getSymbolSection(StringRef S) = 0; |