From: Ted Kremenek Date: Mon, 17 Sep 2007 21:21:20 +0000 (+0000) Subject: Made driver flag --check-uninit-values more self-explanatory. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=91a0c62ad1e05b73e5929ab5ec7a8e82aae11064;p=clang Made driver flag --check-uninit-values more self-explanatory. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42062 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Driver/clang.cpp b/Driver/clang.cpp index a69041396e..aca94f711d 100644 --- a/Driver/clang.cpp +++ b/Driver/clang.cpp @@ -99,7 +99,7 @@ ProgAction(llvm::cl::desc("Choose output type:"), llvm::cl::ZeroOrMore, "Print results of live variable analysis."), clEnumValN(WarnDeadStores, "check-dead-stores", "Flag warnings of stores to dead variables."), - clEnumValN(WarnUninitVals, "check-unit-vals", + clEnumValN(WarnUninitVals, "check-uninit-values", "Flag warnings of uses of unitialized variables."), clEnumValN(EmitLLVM, "emit-llvm", "Build ASTs then convert to LLVM, emit .ll file"),