diff options
Diffstat (limited to 'llvm/tools/llvm-as/llvm-as.cpp')
-rw-r--r-- | llvm/tools/llvm-as/llvm-as.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/tools/llvm-as/llvm-as.cpp b/llvm/tools/llvm-as/llvm-as.cpp index f28ad00..d8e36de 100644 --- a/llvm/tools/llvm-as/llvm-as.cpp +++ b/llvm/tools/llvm-as/llvm-as.cpp @@ -32,9 +32,8 @@ using namespace llvm; cl::OptionCategory AsCat("llvm-as Options"); -static cl::opt<std::string> InputFilename(cl::Positional, - cl::desc("<input .llvm file>"), - cl::init("-")); +static cl::opt<std::string> + InputFilename(cl::Positional, cl::desc("<input .ll file>"), cl::init("-")); static cl::opt<std::string> OutputFilename("o", cl::desc("Override output filename"), |