From 49dfbc6efc64bcd9031bc80fd20f4be080ebf56e Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Wed, 5 Jul 2023 15:08:53 -0700 Subject: [PATCH] [ELF] Remove one unneeded unquote from D124266 This one is unneeded after commit d60ef9338deb734541ff1c9d0771807815d5d9e6 (2023-02-03). --- lld/ELF/ScriptParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lld/ELF/ScriptParser.cpp b/lld/ELF/ScriptParser.cpp index 1ed516637269..9f20cefe4c5f 100644 --- a/lld/ELF/ScriptParser.cpp +++ b/lld/ELF/ScriptParser.cpp @@ -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,