We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9eb1f2d commit 1bd5df7Copy full SHA for 1bd5df7
lld/ELF/ScriptParser.cpp
@@ -1083,7 +1083,7 @@ SymbolAssignment *ScriptParser::readSymbolAssignment(StringRef name) {
1083
StringRef op = next();
1084
assert(op == "=" || op == "*=" || op == "/=" || op == "+=" || op == "-=" ||
1085
op == "&=" || op == "^=" || op == "|=" || op == "<<=" || op == ">>=");
1086
- // Note: GNU ld does not support %= or ^=.
+ // Note: GNU ld does not support %=.
1087
Expr e = readExpr();
1088
if (op != "=") {
1089
std::string loc = getCurrentLocation();
0 commit comments