summaryrefslogtreecommitdiff
path: root/tools/analyze
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-07-23 20:22:30 +0000
committerChris Lattner <sabre@nondot.org>2001-07-23 20:22:30 +0000
commita8e1fd30ed00fe36dce42d2e4a09dbf83f778152 (patch)
tree4a8df73774f898ecb8d3a4739651469dfccb6c99 /tools/analyze
parent1e78f36127fb0e405d2cf893e2ce3381300a667b (diff)
downloadllvm-a8e1fd30ed00fe36dce42d2e4a09dbf83f778152.tar.gz
llvm-a8e1fd30ed00fe36dce42d2e4a09dbf83f778152.tar.bz2
llvm-a8e1fd30ed00fe36dce42d2e4a09dbf83f778152.tar.xz
Use the new Alias command line option
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@284 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/analyze')
-rw-r--r--tools/analyze/analyze.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/analyze/analyze.cpp b/tools/analyze/analyze.cpp
index 3163981248..6d35f3e085 100644
--- a/tools/analyze/analyze.cpp
+++ b/tools/analyze/analyze.cpp
@@ -93,7 +93,8 @@ enum Ans {
};
cl::String InputFilename ("", "Load <arg> file to analyze", cl::NoFlags, "-");
-cl::Flag Quiet ("q", "Don't print analysis pass names", 0, false);
+cl::Flag Quiet ("q", "Don't print analysis pass names");
+cl::Alias QuietA ("quiet", "Alias for -q", cl::NoFlags, Quiet);
cl::EnumList<enum Ans> AnalysesList(cl::NoFlags,
clEnumVal(print , "Print each Method"),
clEnumVal(intervals , "Print Interval Partitions"),