diff options
author | Chris Lattner <sabre@nondot.org> | 2007-02-07 04:39:35 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-02-07 04:39:35 +0000 |
commit | 216835d688421a3cabfcaf636e567733ff7c936b (patch) | |
tree | aea95a62a5011c946597c5619fdc1e4716814f15 /llvm/tools/llvm-dis/llvm-dis.cpp | |
parent | 960cf7c9296049f9fc7576b47966193bdd19a04a (diff) | |
download | bcm5719-llvm-216835d688421a3cabfcaf636e567733ff7c936b.tar.gz bcm5719-llvm-216835d688421a3cabfcaf636e567733ff7c936b.zip |
add an option for timing bc file reading.
llvm-svn: 33977
Diffstat (limited to 'llvm/tools/llvm-dis/llvm-dis.cpp')
-rw-r--r-- | llvm/tools/llvm-dis/llvm-dis.cpp | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/llvm/tools/llvm-dis/llvm-dis.cpp b/llvm/tools/llvm-dis/llvm-dis.cpp index d2022fd9f84..e4ed2b32ca9 100644 --- a/llvm/tools/llvm-dis/llvm-dis.cpp +++ b/llvm/tools/llvm-dis/llvm-dis.cpp @@ -39,6 +39,9 @@ OutputFilename("o", cl::desc("Override output filename"), static cl::opt<bool> Force("f", cl::desc("Overwrite output files")); +static cl::opt<bool> +DontPrint("disable-output", cl::desc("Don't output the .ll file"), cl::Hidden); + int main(int argc, char **argv) { llvm_shutdown_obj X; // Call llvm_shutdown() on exit. try { @@ -58,7 +61,9 @@ int main(int argc, char **argv) { return 1; } - if (OutputFilename != "") { // Specified an output filename? + if (DontPrint) { + // Just use stdout. We won't actually print anything on it. + } else if (OutputFilename != "") { // Specified an output filename? if (OutputFilename != "-") { // Not stdout? if (!Force && std::ifstream(OutputFilename.c_str())) { // If force is not specified, make sure not to overwrite a file! @@ -102,10 +107,12 @@ int main(int argc, char **argv) { } // All that llvm-dis does is write the assembly to a file. - PassManager Passes; - OStream L(*Out); - Passes.add(new PrintModulePass(&L)); - Passes.run(*M.get()); + if (!DontPrint) { + PassManager Passes; + OStream L(*Out); + Passes.add(new PrintModulePass(&L)); + Passes.run(*M.get()); + } if (Out != &std::cout) { ((std::ofstream*)Out)->close(); |