forked from OSchip/llvm-project
Changed command line options "-check-dead-stores" and
"-check-uninit-values" to "-warn-dead-stores" and "-warn-uninit-values" llvm-svn: 42307
This commit is contained in:
parent
440d13b55b
commit
2826f6e63f
|
@ -100,9 +100,9 @@ ProgAction(llvm::cl::desc("Choose output type:"), llvm::cl::ZeroOrMore,
|
|||
"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"),
|
||||
|
|
Loading…
Reference in New Issue