Remove an unused command-line option.
authorDan Gohman <gohman@apple.com>
Wed, 18 Aug 2010 17:20:51 +0000 (17:20 +0000)
committerDan Gohman <gohman@apple.com>
Wed, 18 Aug 2010 17:20:51 +0000 (17:20 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111367 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp

index 81bc10cd7e34f2e467718d2fe9f7412be7bc27f0..80a8d74988fde84e0ea1205591f0be263aab2ff0 100644 (file)
@@ -46,9 +46,6 @@ using namespace llvm;
 static cl::opt<std::string>
   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 bitcode trace"));
 
 //===----------------------------------------------------------------------===//