random tidy

llvm-svn: 86511
This commit is contained in:
Chris Lattner 2009-11-09 04:18:23 +00:00
parent 275dd8b0af
commit d1c4e75750
1 changed files with 1 additions and 2 deletions

View File

@ -172,10 +172,9 @@ Linker::LinkInArchive(const sys::Path &Filename, bool &is_native) {
verbose(" Linking in module: " + aModule->getModuleIdentifier());
// Link it in
if (LinkInModule(aModule, &moduleErrorMsg)) {
if (LinkInModule(aModule, &moduleErrorMsg))
return error("Cannot link in module '" +
aModule->getModuleIdentifier() + "': " + moduleErrorMsg);
}
}
}