test commit

llvm-svn: 265840
This commit is contained in:
Evgeny Stupachenko 2016-04-08 20:20:38 +00:00
parent ebaa56bb26
commit 8788048403
1 changed files with 2 additions and 2 deletions

View File

@ -405,11 +405,11 @@ static void CloneLoopBlocks(Loop *L, Value *NewIter,
/// ***Prolog case***
/// extraiters = tripcount % loopfactor
/// if (extraiters == 0) jump Loop:
/// else jump Prol
/// else jump Prol:
/// Prol: LoopBody;
/// extraiters -= 1 // Omitted if unroll factor is 2.
/// if (extraiters != 0) jump Prol: // Omitted if unroll factor is 2.
/// if (tripcount < loopfactor) jump End
/// if (tripcount < loopfactor) jump End:
/// Loop:
/// ...
/// End: