diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2015-08-20 08:06:03 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2015-08-20 08:06:03 +0000 |
commit | 0f792189a478d476666b5966ac7d70e17738f3ef (patch) | |
tree | 75576ea1f67340da9a87b46d5b702f35d8ad32cd /llvm/lib/Analysis/Analysis.cpp | |
parent | 43788c5783377843ecf2cd5592c91c4f673bc963 (diff) | |
download | bcm5719-llvm-0f792189a478d476666b5966ac7d70e17738f3ef.tar.gz bcm5719-llvm-0f792189a478d476666b5966ac7d70e17738f3ef.zip |
[ARC] Pull the ObjC ARC components that really serve the role of
analyses into LLVM's Analysis library rather than having them in
a Transforms library.
This is motivated by the need to have the core AliasAnalysis
infrastructure be aware of the ObjCARCAliasAnalysis. However, it also
seems like a nice and clean separation. Everything was very easy to move
and this doesn't create much clutter in the analysis library IMO.
Differential Revision: http://reviews.llvm.org/D12133
llvm-svn: 245541
Diffstat (limited to 'llvm/lib/Analysis/Analysis.cpp')
-rw-r--r-- | llvm/lib/Analysis/Analysis.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Analysis/Analysis.cpp b/llvm/lib/Analysis/Analysis.cpp index ac1cf763a6a..d338710f7bf 100644 --- a/llvm/lib/Analysis/Analysis.cpp +++ b/llvm/lib/Analysis/Analysis.cpp @@ -61,6 +61,7 @@ void llvm::initializeAnalysis(PassRegistry &Registry) { initializeMemDerefPrinterPass(Registry); initializeMemoryDependenceAnalysisPass(Registry); initializeModuleDebugInfoPrinterPass(Registry); + initializeObjCARCAliasAnalysisPass(Registry); initializePostDominatorTreePass(Registry); initializeRegionInfoPassPass(Registry); initializeRegionViewerPass(Registry); |