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-ld/Makefile | |
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-ld/Makefile')
-rw-r--r-- | tools/llvm-ld/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-ld/Makefile b/tools/llvm-ld/Makefile index 880df9f..34d6dc6 100644 --- a/tools/llvm-ld/Makefile +++ b/tools/llvm-ld/Makefile @@ -11,7 +11,7 @@ LEVEL = ../.. TOOLNAME = llvm-ld USEDLIBS = LLVMipo.a LLVMTransforms.a LLVMScalarOpts.a LLVMAnalysis.a \ - LLVMipa.a LLVMTransformUtils LLVMTarget.a LLVMLinker.a \ + LLVMipa.a LLVMTransformUtils.a LLVMTarget.a LLVMLinker.a \ LLVMArchive.a LLVMBCReader LLVMBCWriter \ LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a |