diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-11-18 06:54:13 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-11-18 06:54:13 +0000 |
commit | cd67662ad950f12c8c383e23b6b9b5bcfcc7b232 (patch) | |
tree | 65d966b9af9efe45ba3b52a499791ea271de237f | |
parent | 55512f9b251df3023f0cbf858f28835992f18165 (diff) | |
download | bcm5719-llvm-cd67662ad950f12c8c383e23b6b9b5bcfcc7b232.tar.gz bcm5719-llvm-cd67662ad950f12c8c383e23b6b9b5bcfcc7b232.zip |
Update for llvm change.
llvm-svn: 253440
-rw-r--r-- | clang/include/clang/Lex/HeaderSearchOptions.h | 2 | ||||
-rw-r--r-- | clang/lib/CodeGen/CGObjCMac.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/clang/include/clang/Lex/HeaderSearchOptions.h b/clang/include/clang/Lex/HeaderSearchOptions.h index af4e7a1a304..915dbf74b2a 100644 --- a/clang/include/clang/Lex/HeaderSearchOptions.h +++ b/clang/include/clang/Lex/HeaderSearchOptions.h @@ -141,7 +141,7 @@ public: /// \brief The set of macro names that should be ignored for the purposes /// of computing the module hash. - llvm::SetVector<std::string> ModulesIgnoreMacros; + llvm::SmallSetVector<std::string, 16> ModulesIgnoreMacros; /// \brief The set of user-provided virtual filesystem overlay files. std::vector<std::string> VFSOverlayFiles; diff --git a/clang/lib/CodeGen/CGObjCMac.cpp b/clang/lib/CodeGen/CGObjCMac.cpp index 4eaa2e51f25..a5f504e141c 100644 --- a/clang/lib/CodeGen/CGObjCMac.cpp +++ b/clang/lib/CodeGen/CGObjCMac.cpp @@ -833,7 +833,7 @@ protected: llvm::DenseMap<Selector, llvm::GlobalVariable*> MethodVarNames; /// DefinedCategoryNames - list of category names in form Class_Category. - llvm::SetVector<std::string> DefinedCategoryNames; + llvm::SmallSetVector<std::string, 16> DefinedCategoryNames; /// MethodVarTypes - uniqued method type signatures. We have to use /// a StringMap here because have no other unique reference. |