[cfe-commits] r169640 - /cfe/trunk/include/clang/StaticAnalyzer/Core/Analyses.def
Anna Zaks
ganna at apple.com
Fri Dec 7 13:51:51 PST 2012
Author: zaks
Date: Fri Dec 7 15:51:50 2012
New Revision: 169640
URL: http://llvm.org/viewvc/llvm-project?rev=169640&view=rev
Log:
[analyzer] Rename the option help to reflect better what it does.
Modified:
cfe/trunk/include/clang/StaticAnalyzer/Core/Analyses.def
Modified: cfe/trunk/include/clang/StaticAnalyzer/Core/Analyses.def
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/StaticAnalyzer/Core/Analyses.def?rev=169640&r1=169639&r2=169640&view=diff
==============================================================================
--- cfe/trunk/include/clang/StaticAnalyzer/Core/Analyses.def (original)
+++ cfe/trunk/include/clang/StaticAnalyzer/Core/Analyses.def Fri Dec 7 15:51:50 2012
@@ -55,8 +55,8 @@
#define ANALYSIS_INLINING_MODE(NAME, CMDFLAG, DESC)
#endif
-ANALYSIS_INLINING_MODE(All, "all", "Analyze all functions in the order defined in the TU")
-ANALYSIS_INLINING_MODE(NoRedundancy, "noredundancy", "Do not analyze a function which has been previously inlined, use call graph to order")
+ANALYSIS_INLINING_MODE(All, "all", "Analyze all functions as top level")
+ANALYSIS_INLINING_MODE(NoRedundancy, "noredundancy", "Do not analyze a function which has been previously inlined")
#undef ANALYSIS_STORE
#undef ANALYSIS_CONSTRAINTS
More information about the cfe-commits
mailing list