summaryrefslogtreecommitdiff
path: root/tools/opt/Makefile
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2005-10-27 15:54:34 +0000
committerJohn Criswell <criswell@uiuc.edu>2005-10-27 15:54:34 +0000
commita11564335749cd259d8a1391be34c1abbe302c42 (patch)
treea1f3f003c0d7a5dfc6a47944901c44182eed5d84 /tools/opt/Makefile
parentfe7f046de875e41dd338163a719a32571da7ec06 (diff)
downloadllvm-a11564335749cd259d8a1391be34c1abbe302c42.tar.gz
llvm-a11564335749cd259d8a1391be34c1abbe302c42.tar.bz2
llvm-a11564335749cd259d8a1391be34c1abbe302c42.tar.xz
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/opt/Makefile')
-rw-r--r--tools/opt/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/opt/Makefile b/tools/opt/Makefile
index fcc6c5fc5d..4fd8293eb0 100644
--- a/tools/opt/Makefile
+++ b/tools/opt/Makefile
@@ -11,7 +11,7 @@ TOOLNAME = opt
USEDLIBS = LLVMBCReader LLVMBCWriter LLVMInstrumentation.a \
LLVMScalarOpts.a LLVMipo.a LLVMipa.a LLVMDataStructure LLVMTransforms.a \
- LLVMTarget.a LLVMAnalysis.a LLVMTransformUtils LLVMCore LLVMSupport.a \
+ LLVMTarget.a LLVMAnalysis.a LLVMTransformUtils.a LLVMCore LLVMSupport.a \
LLVMbzip2 LLVMSystem.a
include $(LEVEL)/Makefile.common