[llvm-commits] CVS: llvm/tools/llvm-extract/Makefile
John Criswell
criswell at cs.uiuc.edu
Thu Oct 27 08:55:13 PDT 2005
Changes in directory llvm/tools/llvm-extract:
Makefile updated: 1.2 -> 1.3
---
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/llvm-extract/Makefile
diff -u llvm/tools/llvm-extract/Makefile:1.2 llvm/tools/llvm-extract/Makefile:1.3
--- llvm/tools/llvm-extract/Makefile:1.2 Wed Oct 26 15:35:12 2005
+++ llvm/tools/llvm-extract/Makefile Thu Oct 27 10:54:34 2005
@@ -10,7 +10,7 @@
TOOLNAME = llvm-extract
USEDLIBS = LLVMBCReader LLVMBCWriter LLVMTransforms.a LLVMipo.a LLVMTarget.a \
- LLVMAnalysis.a LLVMTransformUtils LLVMipa.a \
+ LLVMAnalysis.a LLVMTransformUtils.a LLVMipa.a \
LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a
include $(LEVEL)/Makefile.common
More information about the llvm-commits
mailing list