diff options
| author | Gabor Greif <ggreif@gmail.com> | 2007-07-04 21:55:50 +0000 |
|---|---|---|
| committer | Gabor Greif <ggreif@gmail.com> | 2007-07-04 21:55:50 +0000 |
| commit | 0e535c3c8e9e336c52cbad3712368701b94eaebb (patch) | |
| tree | 0c6ede8cddbd3775e5b3f301c1b80a183500ba45 /llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp | |
| parent | 3d7008cd49b64ba49f1bf15f09e31c526fc27604 (diff) | |
| download | bcm5719-llvm-0e535c3c8e9e336c52cbad3712368701b94eaebb.tar.gz bcm5719-llvm-0e535c3c8e9e336c52cbad3712368701b94eaebb.zip | |
Pretty straightforward replacement of "bytecode" by "bitcode"
performed on tools/ first, in order not to cause lethal damage
llvm-svn: 37877
Diffstat (limited to 'llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp')
| -rw-r--r-- | llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp b/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp index 1c96a2b3a8e..126a2edc402 100644 --- a/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp +++ b/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp @@ -1,4 +1,4 @@ -//===-- llvm-bcanalyzer.cpp - Byte Code Analyzer --------------------------===// +//===-- llvm-bcanalyzer.cpp - Bitcode Analyzer --------------------------===// // // The LLVM Compiler Infrastructure // @@ -8,22 +8,22 @@ //===----------------------------------------------------------------------===// // // This tool may be invoked in the following manner: -// llvm-bcanalyzer [options] - Read LLVM bytecode from stdin -// llvm-bcanalyzer [options] x.bc - Read LLVM bytecode from the x.bc file +// llvm-bcanalyzer [options] - Read LLVM bitcode from stdin +// llvm-bcanalyzer [options] x.bc - Read LLVM bitcode from the x.bc file // // Options: // --help - Output information about command line switches -// --dump - Dump low-level bytecode structure in readable format +// --dump - Dump low-level bitcode structure in readable format // -// This tool provides analytical information about a bytecode file. It is -// intended as an aid to developers of bytecode reading and writing software. It -// produces on std::out a summary of the bytecode file that shows various +// This tool provides analytical information about a bitcode file. It is +// intended as an aid to developers of bitcode reading and writing software. It +// produces on std::out a summary of the bitcode file that shows various // statistics about the contents of the file. By default this information is -// detailed and contains information about individual bytecode blocks and the +// detailed and contains information about individual bitcode blocks and the // functions in the module. -// The tool is also able to print a bytecode file in a straight forward text +// The tool is also able to print a bitcode file in a straight forward text // format that shows the containment and relationships of the information in -// the bytecode file (-dump option). +// the bitcode file (-dump option). // //===----------------------------------------------------------------------===// @@ -41,12 +41,12 @@ using namespace llvm; static cl::opt<std::string> - InputFilename(cl::Positional, cl::desc("<input bytecode>"), cl::init("-")); + InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-")); static cl::opt<std::string> OutputFilename("-o", cl::init("-"), cl::desc("<output file>")); -static cl::opt<bool> Dump("dump", cl::desc("Dump low level bytecode trace")); +static cl::opt<bool> Dump("dump", cl::desc("Dump low level bitcode trace")); //===----------------------------------------------------------------------===// // Bitcode specific analysis. |

