[ELF] Remove one unneeded unquote from D124266
authorFangrui Song <i@maskray.me>
Wed, 5 Jul 2023 22:08:53 +0000 (15:08 -0700)
committerFangrui Song <i@maskray.me>
Wed, 5 Jul 2023 22:08:53 +0000 (15:08 -0700)
This one is unneeded after commit d60ef9338deb734541ff1c9d0771807815d5d9e6 (2023-02-03).

lld/ELF/ScriptParser.cpp

index 1ed5166..9f20cef 100644 (file)
@@ -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,