diff options
Diffstat (limited to 'lld/ELF/ScriptParser.cpp')
-rw-r--r-- | lld/ELF/ScriptParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/ScriptParser.cpp b/lld/ELF/ScriptParser.cpp index 3fbb49d..55b10f0 100644 --- a/lld/ELF/ScriptParser.cpp +++ b/lld/ELF/ScriptParser.cpp @@ -1083,7 +1083,7 @@ SymbolAssignment *ScriptParser::readSymbolAssignment(StringRef name) { StringRef op = next(); assert(op == "=" || op == "*=" || op == "/=" || op == "+=" || op == "-=" || op == "&=" || op == "^=" || op == "|=" || op == "<<=" || op == ">>="); - // Note: GNU ld does not support %= or ^=. + // Note: GNU ld does not support %=. Expr e = readExpr(); if (op != "=") { std::string loc = getCurrentLocation(); |