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 | a11564335749cd259d8a1391be34c1abbe302c42 (patch) | |
tree | a1f3f003c0d7a5dfc6a47944901c44182eed5d84 /tools/llvm-extract | |
parent | fe7f046de875e41dd338163a719a32571da7ec06 (diff) | |
download | external_llvm-a11564335749cd259d8a1391be34c1abbe302c42.zip external_llvm-a11564335749cd259d8a1391be34c1abbe302c42.tar.gz external_llvm-a11564335749cd259d8a1391be34c1abbe302c42.tar.bz2 |
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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24036 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-extract')
-rw-r--r-- | tools/llvm-extract/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-extract/Makefile b/tools/llvm-extract/Makefile index 69e7e7f..80a90fa 100644 --- a/tools/llvm-extract/Makefile +++ b/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 |