summaryrefslogtreecommitdiff
path: root/tools/opt/opt.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-31 16:52:49 +0000
committerChris Lattner <sabre@nondot.org>2002-07-31 16:52:49 +0000
commitf9e173e85ab1e4062cc723cab6db0b86ed2578b8 (patch)
treeff09aa655c4291f33de06d4f6dba9c4f5f2f994f /tools/opt/opt.cpp
parentd16714b5ed076d0c1d14543098c1e9b90fd92a38 (diff)
downloadllvm-f9e173e85ab1e4062cc723cab6db0b86ed2578b8.tar.gz
llvm-f9e173e85ab1e4062cc723cab6db0b86ed2578b8.tar.bz2
llvm-f9e173e85ab1e4062cc723cab6db0b86ed2578b8.tar.xz
Change command line option message on -q to make it more accurate
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3177 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/opt/opt.cpp')
-rw-r--r--tools/opt/opt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp
index 6f7343bae3..faaf6e2eb2 100644
--- a/tools/opt/opt.cpp
+++ b/tools/opt/opt.cpp
@@ -47,7 +47,7 @@ static cl::opt<bool>
PrintEachXForm("p", cl::desc("Print module after each transformation"));
static cl::opt<bool>
-Quiet("q", cl::desc("Don't print modifying pass names"));
+Quiet("q", cl::desc("Don't print 'program modified' message"));
static cl::alias
QuietA("quiet", cl::desc("Alias for -q"), cl::aliasopt(Quiet));