forked from OSchip/llvm-project
[ELF] - Revert r293749
Accidentally lost the commit title and message, will recommit. llvm-svn: 293750
This commit is contained in:
parent
f46e54f078
commit
091f9b35c7
|
@ -1494,7 +1494,8 @@ ScriptParser::readOutputSectionDescription(StringRef OutSec) {
|
|||
while (!Error && !consume("}")) {
|
||||
StringRef Tok = next();
|
||||
if (Tok == ";") {
|
||||
// Empty commands are allowed. Do nothing here.
|
||||
// Commands may contain excessive additional semicolons around.
|
||||
// We should be able to parse it.
|
||||
} else if (SymbolAssignment *Assignment = readProvideOrAssignment(Tok)) {
|
||||
Cmd->Commands.emplace_back(Assignment);
|
||||
} else if (BytesDataCommand *Data = readBytesDataCommand(Tok)) {
|
||||
|
|
Loading…
Reference in New Issue