mirror of
https://github.com/intel/llvm.git
synced 2026-01-24 08:30:34 +08:00
[LLD][ELF] - Use auto. NFC.
This addresses the missed review comment. llvm-svn: 348480
This commit is contained in:
@@ -857,7 +857,7 @@ OutputSection *ScriptParser::readOutputSectionDescription(StringRef OutSec) {
|
||||
// We have a file name and no input sections description. It is not a
|
||||
// commonly used syntax, but still acceptable. In that case, all sections
|
||||
// from the file will be included.
|
||||
InputSectionDescription *ISD = make<InputSectionDescription>(Tok);
|
||||
auto *ISD = make<InputSectionDescription>(Tok);
|
||||
ISD->SectionPatterns.push_back({{}, StringMatcher({"*"})});
|
||||
Cmd->SectionCommands.push_back(ISD);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user