Reduce indentation. No functionality change.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211318 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola
2014-06-19 22:20:07 +00:00
parent 9eb38b233e
commit 474f223860

View File

@@ -239,7 +239,9 @@ ld_plugin_status onload(ld_plugin_tv *tv) {
return LDPS_ERR;
}
if (RegisteredAllSymbolsRead) {
if (!RegisteredAllSymbolsRead)
return LDPS_OK;
InitializeAllTargetInfos();
InitializeAllTargets();
InitializeAllTargetMCs();
@@ -256,10 +258,8 @@ ld_plugin_status onload(ld_plugin_tv *tv) {
Attrs.append(",");
Attrs.append(MAttrs[I]);
}
CodeGen->setAttr(Attrs.c_str());
}
}
return LDPS_OK;
}