summaryrefslogtreecommitdiffstats
path: root/llvm/unittests/Analysis
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2015-08-18 17:51:53 +0000
committerChandler Carruth <chandlerc@gmail.com>2015-08-18 17:51:53 +0000
commit7adc3a2b0e467c909f1489992da5f4c467c0d10f (patch)
tree61200e0d5231f0290211345f88ed5c1d18614f1a /llvm/unittests/Analysis
parent201d065259658b822b2470fc924b6036715ab4f3 (diff)
downloadbcm5719-llvm-7adc3a2b0e467c909f1489992da5f4c467c0d10f.tar.gz
bcm5719-llvm-7adc3a2b0e467c909f1489992da5f4c467c0d10f.zip
[PM/AA] Remove the last relics of the separate IPA library from LLVM,
folding the code into the main Analysis library. There already wasn't much of a distinction between Analysis and IPA. A number of the passes in Analysis are actually IPA passes, and there doesn't seem to be any advantage to separating them. Moreover, it makes it hard to have interactions between analyses that are both local and interprocedural. In trying to make the Alias Analysis infrastructure work with the new pass manager, it becomes particularly awkward to navigate this split. I've tried to find all the places where we referenced this, but I may have missed some. I have also adjusted the C API to continue to be equivalently functional after this change. Differential Revision: http://reviews.llvm.org/D12075 llvm-svn: 245318
Diffstat (limited to 'llvm/unittests/Analysis')
-rw-r--r--llvm/unittests/Analysis/CMakeLists.txt1
-rw-r--r--llvm/unittests/Analysis/Makefile2
2 files changed, 1 insertions, 2 deletions
diff --git a/llvm/unittests/Analysis/CMakeLists.txt b/llvm/unittests/Analysis/CMakeLists.txt
index 28d35ceec92..06560cf14d4 100644
--- a/llvm/unittests/Analysis/CMakeLists.txt
+++ b/llvm/unittests/Analysis/CMakeLists.txt
@@ -1,5 +1,4 @@
set(LLVM_LINK_COMPONENTS
- IPA
Analysis
AsmParser
Core
diff --git a/llvm/unittests/Analysis/Makefile b/llvm/unittests/Analysis/Makefile
index 52296e7b3db..527f4525e87 100644
--- a/llvm/unittests/Analysis/Makefile
+++ b/llvm/unittests/Analysis/Makefile
@@ -9,7 +9,7 @@
LEVEL = ../..
TESTNAME = Analysis
-LINK_COMPONENTS := ipa analysis asmparser
+LINK_COMPONENTS := analysis asmparser
include $(LEVEL)/Makefile.config
include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest
OpenPOWER on IntegriCloud