diff options
author | Rui Ueyama <ruiu@google.com> | 2016-04-22 22:59:24 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2016-04-22 22:59:24 +0000 |
commit | 4a46539c24736a60c9115fcc6d8f1c26ff8a4693 (patch) | |
tree | 2edd4fce38ee0b3bc802c5a48bb297ec4a4aa692 /lld/ELF/LinkerScript.cpp | |
parent | e12fd0fc2c7c806f4d734d58cf48c05c2e9a12bb (diff) | |
download | bcm5719-llvm-4a46539c24736a60c9115fcc6d8f1c26ff8a4693.tar.gz bcm5719-llvm-4a46539c24736a60c9115fcc6d8f1c26ff8a4693.zip |
Devirtualize ScriptParserBase. NFC.
ScriptParserBase class is a container of collection of various methods
to parse linker script-ish text. It had a virtual method `run` to run
the parser. But we don't have to enforce its descendents to implement
that. It's up to them.
This patch removes pure virtual function `run`.
llvm-svn: 267246
Diffstat (limited to 'lld/ELF/LinkerScript.cpp')
-rw-r--r-- | lld/ELF/LinkerScript.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/LinkerScript.cpp b/lld/ELF/LinkerScript.cpp index 44246f43f9d..5fad6e1abf2 100644 --- a/lld/ELF/LinkerScript.cpp +++ b/lld/ELF/LinkerScript.cpp @@ -317,7 +317,7 @@ class elf::ScriptParser : public ScriptParserBase { public: ScriptParser(StringRef S, bool B) : ScriptParserBase(S), IsUnderSysroot(B) {} - void run() override; + void run(); private: void addFile(StringRef Path); |