Pull interprocedural analyses out of Analysis library into their own lib
authorChris Lattner <sabre@nondot.org>
Wed, 6 Mar 2002 18:44:29 +0000 (18:44 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 6 Mar 2002 18:44:29 +0000 (18:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1827 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/Makefile
tools/analyze/Makefile
tools/gccas/Makefile
tools/opt/Makefile

index 3979709be83ec6b90556eb68d069b9a1c4a19389..69359afb8f0028199a1dff64833615156532c5e5 100644 (file)
@@ -3,7 +3,7 @@ LEVEL = ../..
 
 LIBRARYNAME = analysis
 
-DIRS = LiveVar
+DIRS = LiveVar IPA
 
 include $(LEVEL)/Makefile.common
 
index ebf137a61e17ec2ce39db8598b313cd7de150108..6dfdc3dd4d553a32b5320de931056f99e66f31d5 100644 (file)
@@ -1,6 +1,6 @@
 LEVEL = ../..
 TOOLNAME = analyze
-USEDLIBS = analysis asmparser bcreader asmwriter scalaropts vmcore analysis transforms support
+USEDLIBS = analysis asmparser bcreader asmwriter scalaropts vmcore analysis ipa transforms support
 
 include $(LEVEL)/Makefile.common
 
index 633e8103e40c7ceb7cd068001f438bd5be6e1cf3..144f9cbe42a48d782bff35c5ef1f13e5ae5a36c0 100644 (file)
@@ -1,6 +1,6 @@
 LEVEL = ../..
 
 TOOLNAME = gccas
-USEDLIBS = asmparser bcwriter transforms scalaropts target analysis transforms vmcore asmwriter support 
+USEDLIBS = asmparser bcwriter transforms scalaropts target analysis transforms ipa vmcore asmwriter support 
 
 include $(LEVEL)/Makefile.common
index f30a0094d69cc62a1f053fe50fe4daa9614aadd8..073cc0e527e049d2426b93f245d72599861a8d71 100644 (file)
@@ -1,7 +1,7 @@
 LEVEL = ../..
 TOOLNAME = opt
 USEDLIBS = bcreader bcwriter asmwriter instrument profpaths scalaropts \
-           ipo target analysis transforms vmcore support
+           ipo ipa target analysis transforms vmcore support
 
 include $(LEVEL)/Makefile.common