aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-01-16 18:21:49 +0000
committerTed Kremenek <kremenek@apple.com>2008-01-16 18:21:49 +0000
commitdb0b651de9c3bbf97ca37cb470938afeef74234d (patch)
treee442437949252f151e9816046cf9d1fa238e5b14
parent7773c4fafdd55d414119ea6454352124ff04368c (diff)
downloadllvm-db0b651de9c3bbf97ca37cb470938afeef74234d.zip
llvm-db0b651de9c3bbf97ca37cb470938afeef74234d.tar.gz
llvm-db0b651de9c3bbf97ca37cb470938afeef74234d.tar.bz2
Shortened driver option for running the GR-constants analysis to --grconstants.
llvm-svn: 46076
-rw-r--r--clang/Driver/clang.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/Driver/clang.cpp b/clang/Driver/clang.cpp
index e73fac9..17df87a 100644
--- a/clang/Driver/clang.cpp
+++ b/clang/Driver/clang.cpp
@@ -109,7 +109,7 @@ ProgAction(llvm::cl::desc("Choose output type:"), llvm::cl::ZeroOrMore,
"Flag warnings of stores to dead variables."),
clEnumValN(WarnUninitVals, "warn-uninit-values",
"Flag warnings of uses of unitialized variables."),
- clEnumValN(AnalysisGRConstants, "gr-const-prop",
+ clEnumValN(AnalysisGRConstants, "grconstants",
"Perform path-sensitive constant propagation."),
clEnumValN(TestSerialization, "test-pickling",
"Run prototype serializtion code."),