1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 12:12:47 +01:00

[Attributor][NFC] Format code

This commit is contained in:
Luofan Chen 2020-08-15 23:53:11 +08:00
parent 4b66f9a4e7
commit f6650786b0

View File

@ -2204,8 +2204,9 @@ static bool runAttributorOnFunctions(InformationCache &InfoCache,
// TODO: for now we eagerly internalize functions without calculating the
// cost, we need a cost interface to determine whether internalizing
// a function is "benefitial"
if (AllowDeepWrapper)
for (unsigned u = 0; u < Functions.size(); u ++) {
if (AllowDeepWrapper) {
unsigned FunSize = Functions.size();
for (unsigned u = 0; u < FunSize; u++) {
Function *F = Functions[u];
if (!F->isDeclaration() && !F->isDefinitionExact() && F->getNumUses() &&
!GlobalValue::isInterposableLinkage(F->getLinkage())) {
@ -2221,6 +2222,7 @@ static bool runAttributorOnFunctions(InformationCache &InfoCache,
}
}
}
}
for (Function *F : Functions) {
if (F->hasExactDefinition())