[cfe-commits] r42307 - /cfe/trunk/Driver/clang.cpp

Ted Kremenek kremenek at apple.com
Tue Sep 25 11:05:47 PDT 2007


Author: kremenek
Date: Tue Sep 25 13:05:45 2007
New Revision: 42307

URL: http://llvm.org/viewvc/llvm-project?rev=42307&view=rev
Log:
Changed command line options "-check-dead-stores" and
"-check-uninit-values" to "-warn-dead-stores" and
"-warn-uninit-values"

Modified:
    cfe/trunk/Driver/clang.cpp

Modified: cfe/trunk/Driver/clang.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/Driver/clang.cpp?rev=42307&r1=42306&r2=42307&view=diff

==============================================================================
--- cfe/trunk/Driver/clang.cpp (original)
+++ cfe/trunk/Driver/clang.cpp Tue Sep 25 13:05:45 2007
@@ -100,9 +100,9 @@
                         "Run parser, then build and view CFGs with Graphviz."),
              clEnumValN(AnalysisLiveVariables, "dump-live-variables",
                         "Print results of live variable analysis."),
-             clEnumValN(WarnDeadStores, "check-dead-stores",
+             clEnumValN(WarnDeadStores, "warn-dead-stores",
                         "Flag warnings of stores to dead variables."),
-             clEnumValN(WarnUninitVals, "check-uninit-values",
+             clEnumValN(WarnUninitVals, "warn-uninit-values",
                         "Flag warnings of uses of unitialized variables."),
              clEnumValN(EmitLLVM, "emit-llvm",
                         "Build ASTs then convert to LLVM, emit .ll file"),





More information about the cfe-commits mailing list