From: Chris Lattner Date: Wed, 31 Jul 2002 16:52:49 +0000 (+0000) Subject: Change command line option message on -q to make it more accurate X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=f9e173e85ab1e4062cc723cab6db0b86ed2578b8;p=oota-llvm.git 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 --- diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp index 6f7343bae3d..faaf6e2eb20 100644 --- a/tools/opt/opt.cpp +++ b/tools/opt/opt.cpp @@ -47,7 +47,7 @@ static cl::opt PrintEachXForm("p", cl::desc("Print module after each transformation")); static cl::opt -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));