aboutsummaryrefslogtreecommitdiff
path: root/tools/gccas
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-07-03 16:46:03 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-07-03 16:46:03 +0000
commit3d48e5358423c98b452d0ad94eda8b672f85874b (patch)
tree6d6adca03cbf8ef6fc8034edd925d27ab6cc2910 /tools/gccas
parent322812e603705e1c2037313633e72f689524b163 (diff)
Split long comment lines.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28988 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/gccas')
-rw-r--r--tools/gccas/gccas.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/tools/gccas/gccas.cpp b/tools/gccas/gccas.cpp
index 0b7d05a8d1..aeef9b135b 100644
--- a/tools/gccas/gccas.cpp
+++ b/tools/gccas/gccas.cpp
@@ -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.