Skip to content

Commit

Permalink
[ELF] Remove one unneeded unquote from D124266
Browse files Browse the repository at this point in the history
This one is unneeded after commit d60ef93 (2023-02-03).
  • Loading branch information
MaskRay committed Jul 5, 2023
1 parent 7cab385 commit 49dfbc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lld/ELF/ScriptParser.cpp
Expand Up @@ -587,7 +587,7 @@ void ScriptParser::readSections() {
if (SectionCommand *cmd = readAssignment(tok))
v.push_back(cmd);
else
v.push_back(readOutputSectionDescription(unquote(tok)));
v.push_back(readOutputSectionDescription(tok));
}

// If DATA_SEGMENT_RELRO_END is absent, for sections after DATA_SEGMENT_ALIGN,
Expand Down

0 comments on commit 49dfbc6

Please sign in to comment.