[gardening] Put white spaces in between if/while clauses and braces where it is missing.

For instance:

'if (foo){' => 'if (foo) {'
This commit is contained in:
Ge Sen
2016-04-01 15:12:22 +08:00
parent 90f0744799
commit 7dd61bdfa9
13 changed files with 16 additions and 16 deletions

View File

@@ -1115,7 +1115,7 @@ static bool hoistBoundsChecks(SILLoop *Loop, DominanceInfo *DT, SILLoopInfo *LI,
// Find canonical induction variables.
InductionAnalysis IndVars(DT, IVs, Preheader, Header, ExitingBlk, ExitBlk);
bool IVarsFound = IndVars.analyse();
if (!IVarsFound){
if (!IVarsFound) {
DEBUG(llvm::dbgs() << "No induction variables found\n");
}