fit in 80 cols
authorChris Lattner <sabre@nondot.org>
Sun, 29 Apr 2007 05:51:00 +0000 (05:51 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 29 Apr 2007 05:51:00 +0000 (05:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36551 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp

index cbb51521121911a796355b11fa12c9bc27feaa89..46440d913daecce7bace9d38c864d45eff15194c 100644 (file)
@@ -27,6 +27,7 @@
 // The tool is also able to print a bytecode file in a straight forward text
 // format that shows the containment and relationships of the information in
 // the bytecode file (-dump option).
+//
 //===----------------------------------------------------------------------===//
 
 #include "llvm/Analysis/Verifier.h"
@@ -46,9 +47,9 @@ static cl::opt<std::string>
 static cl::opt<std::string>
   OutputFilename("-o", cl::init("-"), cl::desc("<output file>"));
 
-static cl::opt<bool> NoDetails ("nodetails", cl::desc("Skip detailed output"));
-static cl::opt<bool> Dump      ("dump", cl::desc("Dump low level bytecode trace"));
-static cl::opt<bool> Verify    ("verify", cl::desc("Progressively verify module"));
+static cl::opt<bool> NoDetails("nodetails", cl::desc("Skip detailed output"));
+static cl::opt<bool> Dump("dump", cl::desc("Dump low level bytecode trace"));
+static cl::opt<bool> Verify("verify", cl::desc("Progressively verify module"));
 
 int main(int argc, char **argv) {
   llvm_shutdown_obj X;  // Call llvm_shutdown() on exit.
@@ -58,7 +59,7 @@ int main(int argc, char **argv) {
 
     sys::PrintStackTraceOnErrorSignal();
 
-    std::ostreamOut = &std::cout;  // Default to printing to stdout...
+    std::ostream *Out = &std::cout;  // Default to printing to stdout...
     std::string ErrorMessage;
     BytecodeAnalysis bca;
 
@@ -92,5 +93,3 @@ int main(int argc, char **argv) {
   }
   return 1;
 }
-
-// vim: sw=2