Fix the document style.
authorNadav Rotem <nrotem@apple.com>
Sun, 25 Nov 2012 16:39:01 +0000 (16:39 +0000)
committerNadav Rotem <nrotem@apple.com>
Sun, 25 Nov 2012 16:39:01 +0000 (16:39 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168569 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Vectorize/LoopVectorize.cpp

index 2ca5feae95edd78f945fdfe5238c68b2ec0777fc..9cba136c72abc0a1382a19771eb9f674071850c4 100644 (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();