[analyzer] fixup for adding of the "dynamic" ipa option

llvm-svn: 160990
This commit is contained in:
Anna Zaks 2012-07-30 20:31:24 +00:00
parent 7044adcaa4
commit b7c2d15065
1 changed files with 2 additions and 1 deletions

View File

@ -47,7 +47,8 @@ ANALYSIS_PURGE(PurgeNone, "none", "Do not purge symbols, bindings, or constrain
#endif
ANALYSIS_IPA(None, "none", "Perform only intra-procedural analysis")
ANALYSIS_IPA(Inlining, "inlining", "Experimental: Inline callees when their definitions are available")
ANALYSIS_IPA(Inlining, "inlining", "Inline callees when their definitions are available")
ANALYSIS_IPA(DynamicDispatch, "dynamic", "Experimental: Enable inlining of dynamically dispatched methods")
#ifndef ANALYSIS_INLINING_MODE
#define ANALYSIS_INLINING_MODE(NAME, CMDFLAG, DESC)