[llvm-commits] CVS: llvm/tools/opt/Makefile

John Criswell criswell at cs.uiuc.edu
Thu Oct 27 08:55:14 PDT 2005



Changes in directory llvm/tools/opt:

Makefile updated: 1.52 -> 1.53
---
Log message:

Move some constant folding code shared by Analysis and Transform passes
into the LLVMAnalysis library.
This allows LLVMTranform and LLVMTransformUtils to be archives and linked
with LLVMAnalysis.a, which provides any missing definitions.



---
Diffs of the changes:  (+1 -1)

 Makefile |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/tools/opt/Makefile
diff -u llvm/tools/opt/Makefile:1.52 llvm/tools/opt/Makefile:1.53
--- llvm/tools/opt/Makefile:1.52	Wed Oct 26 15:35:13 2005
+++ llvm/tools/opt/Makefile	Thu Oct 27 10:54:34 2005
@@ -11,7 +11,7 @@
 
 USEDLIBS = LLVMBCReader LLVMBCWriter LLVMInstrumentation.a \
 	   LLVMScalarOpts.a LLVMipo.a LLVMipa.a LLVMDataStructure LLVMTransforms.a \
-	   LLVMTarget.a LLVMAnalysis.a LLVMTransformUtils LLVMCore LLVMSupport.a \
+	   LLVMTarget.a LLVMAnalysis.a LLVMTransformUtils.a LLVMCore LLVMSupport.a \
 	   LLVMbzip2 LLVMSystem.a 
 
 include $(LEVEL)/Makefile.common






More information about the llvm-commits mailing list