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/bugpoint | |
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/bugpoint')
-rw-r--r-- | tools/bugpoint/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bugpoint/Makefile b/tools/bugpoint/Makefile index 0b19832..6460aa8 100644 --- a/tools/bugpoint/Makefile +++ b/tools/bugpoint/Makefile @@ -14,7 +14,7 @@ OPTLIBS = LLVMTransforms.a LLVMInstrumentation.a ANALIBS = LLVMDataStructure LLVMipa.a LLVMTarget.a USEDLIBS = LLVMipo.a LLVMScalarOpts.a $(OPTLIBS) $(ANALIBS) LLVMAnalysis.a \ - LLVMTransformUtils \ + LLVMTransformUtils.a \ LLVMAsmParser LLVMLinker.a LLVMBCReader LLVMBCWriter \ LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a |