diff options
author | Nadav Rotem <nrotem@apple.com> | 2012-11-25 16:39:01 +0000 |
---|---|---|
committer | Nadav Rotem <nrotem@apple.com> | 2012-11-25 16:39:01 +0000 |
commit | 00e8074ee24449e5d0e50b626290b499b8bd78b1 (patch) | |
tree | 31b49e1531bb8b0a0c381f838447145e916092d2 /lib/Transforms/Vectorize/LoopVectorize.cpp | |
parent | 8c6b73666bdd08f15b31c00bd2fd663b632a1d65 (diff) |
Fix the document style.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168569 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Vectorize/LoopVectorize.cpp')
-rw-r--r-- | lib/Transforms/Vectorize/LoopVectorize.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Transforms/Vectorize/LoopVectorize.cpp b/lib/Transforms/Vectorize/LoopVectorize.cpp index 2ca5feae95..9cba136c72 100644 --- a/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -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(); |