Minor style fix.

llvm-svn: 205486
This commit is contained in:
Rui Ueyama 2014-04-02 23:17:39 +00:00
parent 54e3ba5ace
commit 519a45ce36
1 changed files with 1 additions and 2 deletions

View File

@ -485,8 +485,7 @@ bool GnuLdDriver::parse(int argc, const char *argv[],
inputNode = new ELFGNULdScript(*ctx, resolvedInputPath, index++); inputNode = new ELFGNULdScript(*ctx, resolvedInputPath, index++);
ec = inputNode->parse(*ctx, diagnostics); ec = inputNode->parse(*ctx, diagnostics);
if (ec) { if (ec) {
diagnostics << userPath << ": Error parsing linker script" diagnostics << userPath << ": Error parsing linker script\n";
<< "\n";
return false; return false;
} }
} }