diff options
author | John Criswell <criswell@uiuc.edu> | 2005-10-27 15:54:34 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2005-10-27 15:54:34 +0000 |
commit | fe5f33b120376d0fe3dbbbc84be0783ddcd0be7b (patch) | |
tree | b228cf783c13f7c9ba39ff7a3f7b50a70d689bd1 /llvm/tools/llvm-extract | |
parent | 4b6d583d7a22d339a026b4f3602a4861681d3bab (diff) | |
download | bcm5719-llvm-fe5f33b120376d0fe3dbbbc84be0783ddcd0be7b.tar.gz bcm5719-llvm-fe5f33b120376d0fe3dbbbc84be0783ddcd0be7b.zip |
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.
llvm-svn: 24036
Diffstat (limited to 'llvm/tools/llvm-extract')
-rw-r--r-- | llvm/tools/llvm-extract/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-extract/Makefile b/llvm/tools/llvm-extract/Makefile index 69e7e7f9279..80a90fa41a8 100644 --- a/llvm/tools/llvm-extract/Makefile +++ b/llvm/tools/llvm-extract/Makefile @@ -10,7 +10,7 @@ LEVEL = ../.. 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 |