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 | 63db485b79620ce7ce04718ffc6b08577d2d918a (patch) | |
tree | e912b4e37226240a721aa9dbd07e7cfd6cc909bb | |
parent | 01b27458a170fdad6ab2a8f214e160f64477c978 (diff) |
fit in 80 cols
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36551 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp b/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp index cbb5152112..46440d913d 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<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 |