[lld] r267218 - Update a comment for r267145.

Rui Ueyama via llvm-commits llvm-commits at lists.llvm.org
Fri Apr 22 14:02:28 PDT 2016


Author: ruiu
Date: Fri Apr 22 16:02:27 2016
New Revision: 267218

URL: http://llvm.org/viewvc/llvm-project?rev=267218&view=rev
Log:
Update a comment for r267145.

Modified:
    lld/trunk/ELF/LinkerScript.cpp

Modified: lld/trunk/ELF/LinkerScript.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/LinkerScript.cpp?rev=267218&r1=267217&r2=267218&view=diff
==============================================================================
--- lld/trunk/ELF/LinkerScript.cpp (original)
+++ lld/trunk/ELF/LinkerScript.cpp Fri Apr 22 16:02:27 2016
@@ -82,7 +82,8 @@ static bool expect(ArrayRef<StringRef> &
 
 // 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);




More information about the llvm-commits mailing list