diff options
author | Anna Zaks <ganna@apple.com> | 2012-07-30 20:31:24 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2012-07-30 20:31:24 +0000 |
commit | 3738db9445b60d6d7cab5367122308f5f2c302fc (patch) | |
tree | 80e79b9eb7cdb39b26a13f99deafe1affffe06ed | |
parent | ca93ee707d9570b74d24c7d55defe18dac38bcc0 (diff) |
[analyzer] fixup for adding of the "dynamic" ipa option
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160990 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Frontend/Analyses.def | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Frontend/Analyses.def b/include/clang/Frontend/Analyses.def index b5b9394af3..3859ea75fa 100644 --- a/include/clang/Frontend/Analyses.def +++ b/include/clang/Frontend/Analyses.def @@ -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) |