aboutsummaryrefslogtreecommitdiff
path: root/llvm/tools/llvm-as/llvm-as.cpp
diff options
context:
space:
mode:
authorAmr Hesham <amr96@programmer.net>2024-09-17 10:50:44 +0200
committerGitHub <noreply@github.com>2024-09-17 10:50:44 +0200
commit24ccdc5f291048b70e424bb4a63cadce6d891f11 (patch)
treeb76dc5040d2cec522c91ab50c5ca3667563851d5 /llvm/tools/llvm-as/llvm-as.cpp
parentcaaac84ab2ef3f56e5204c9fae5cddf7b6e9a1c0 (diff)
downloadllvm-24ccdc5f291048b70e424bb4a63cadce6d891f11.zip
llvm-24ccdc5f291048b70e424bb4a63cadce6d891f11.tar.gz
llvm-24ccdc5f291048b70e424bb4a63cadce6d891f11.tar.bz2
[llvm][llvm-as] Fix file input extension description (#108295)
Input file extension description should mention that it should be `.ll` not `.llvm`
Diffstat (limited to 'llvm/tools/llvm-as/llvm-as.cpp')
-rw-r--r--llvm/tools/llvm-as/llvm-as.cpp5
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"),