diff options
Diffstat (limited to 'lld/ELF/LinkerScript.cpp')
-rw-r--r-- | lld/ELF/LinkerScript.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lld/ELF/LinkerScript.cpp b/lld/ELF/LinkerScript.cpp index aae750768d1..d0b00626ba4 100644 --- a/lld/ELF/LinkerScript.cpp +++ b/lld/ELF/LinkerScript.cpp @@ -82,7 +82,8 @@ static bool expect(ArrayRef<StringRef> &Tokens, StringRef S) { // This is a part of the operator-precedence parser to evaluate // arithmetic expressions in SECTIONS command. This function evaluates an -// integer literal, a parenthesized expression or the special variable ".". +// integer literal, a parenthesized expression, the ALIGN function, +// or the special variable ".". template <class ELFT> uint64_t LinkerScript<ELFT>::parsePrimary(ArrayRef<StringRef> &Tokens) { StringRef Tok = next(Tokens); |