diff options
author | Chris Lattner <sabre@nondot.org> | 2007-04-29 05:51:00 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-04-29 05:51:00 +0000 |
commit | cc18989c144e502b9ad7b0d545df4bafd9c544c6 (patch) | |
tree | 81444f76e3b9fc99c723789c5ecd4cc1c1edf43f | |
parent | f0a1ebae4b5977b68432a03cb20a339c2684e2e8 (diff) | |
download | bcm5719-llvm-cc18989c144e502b9ad7b0d545df4bafd9c544c6.tar.gz bcm5719-llvm-cc18989c144e502b9ad7b0d545df4bafd9c544c6.zip |
fit in 80 cols
llvm-svn: 36551
-rw-r--r-- | llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp b/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp index cbb51521121..46440d913da 100644 --- a/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp +++ b/llvm/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<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::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 |