Skip to content

Commit b7fe9df

Browse files
AmrDevelopertmsri
authored andcommitted
[llvm][llvm-as] Fix file input extension description (llvm#108295)
Input file extension description should mention that it should be `.ll` not `.llvm`
1 parent 1eec327 commit b7fe9df

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

llvm/tools/llvm-as/llvm-as.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,8 @@ using namespace llvm;
3232

3333
cl::OptionCategory AsCat("llvm-as Options");
3434

35-
static cl::opt<std::string> InputFilename(cl::Positional,
36-
cl::desc("<input .llvm file>"),
37-
cl::init("-"));
35+
static cl::opt<std::string>
36+
InputFilename(cl::Positional, cl::desc("<input .ll file>"), cl::init("-"));
3837

3938
static cl::opt<std::string> OutputFilename("o",
4039
cl::desc("Override output filename"),

0 commit comments

Comments
 (0)