Fix the document style.

llvm-svn: 168569
This commit is contained in:
Nadav Rotem 2012-11-25 16:39:01 +00:00
parent 12192f19eb
commit ef33b5076c
1 changed files with 3 additions and 3 deletions

View File

@ -118,10 +118,10 @@ public:
// Perform the actual loop widening (vectorization).
void vectorize(LoopVectorizationLegality *Legal) {
///Create a new empty loop. Unlink the old loop and connect the new one.
// Create a new empty loop. Unlink the old loop and connect the new one.
createEmptyLoop(Legal);
/// Widen each instruction in the old loop to a new one in the new loop.
/// Use the Legality module to find the induction and reduction variables.
// Widen each instruction in the old loop to a new one in the new loop.
// Use the Legality module to find the induction and reduction variables.
vectorizeLoop(Legal);
// Register the new loop and update the analysis passes.
updateAnalysis();