diff --git a/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp b/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp index cbb51521121..46440d913da 100644 --- a/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp +++ b/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp @@ -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 static cl::opt OutputFilename("-o", cl::init("-"), cl::desc("")); -static cl::opt NoDetails ("nodetails", cl::desc("Skip detailed output")); -static cl::opt Dump ("dump", cl::desc("Dump low level bytecode trace")); -static cl::opt Verify ("verify", cl::desc("Progressively verify module")); +static cl::opt NoDetails("nodetails", cl::desc("Skip detailed output")); +static cl::opt Dump("dump", cl::desc("Dump low level bytecode trace")); +static cl::opt 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::ostream* Out = &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