Split long comment lines.
authorReid Spencer <rspencer@reidspencer.com>
Mon, 3 Jul 2006 16:46:03 +0000 (16:46 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Mon, 3 Jul 2006 16:46:03 +0000 (16:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28988 91177308-0d34-0410-b5e6-96231b3b80d8

tools/gccas/gccas.cpp

index 0b7d05a8d157f6fb0039c7866baea8d8c893aadc..aeef9b135bcc41dad39bce4a8a38199a36a1ef6a 100644 (file)
@@ -186,17 +186,15 @@ int main(int argc, char **argv) {
       return 1;
     }
 
-    // In addition to just parsing the input from GCC, we also want to spiff it up
-    // a little bit.  Do this now.
-    //
+    // In addition to just parsing the input from GCC, we also want to spiff 
+    // it up a little bit.  Do this now.
     PassManager Passes;
 
     // Add an appropriate TargetData instance for this module...
     Passes.add(new TargetData(M.get()));
 
-    // Add all of the transformation passes to the pass manager to do the cleanup
-    // and optimization of the GCC output.
-    //
+    // Add all of the transformation passes to the pass manager to do the 
+    // cleanup and optimization of the GCC output.
     AddConfiguredTransformationPasses(Passes);
 
     // Make sure everything is still good.