summaryrefslogtreecommitdiff
path: root/tools/analyze
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-10-24 01:00:13 +0000
committerChris Lattner <sabre@nondot.org>2005-10-24 01:00:13 +0000
commit31360613cbe4865d4469401b829820292a77ce64 (patch)
treefb250731ff22a8a4bee7714466fc0cad38e921ee /tools/analyze
parentefec5e15997954284fd4eb0e81f444fecd652c1b (diff)
downloadllvm-31360613cbe4865d4469401b829820292a77ce64.tar.gz
llvm-31360613cbe4865d4469401b829820292a77ce64.tar.bz2
llvm-31360613cbe4865d4469401b829820292a77ce64.tar.xz
Use the new LinkAllAnalyses.h header instead of forcing passes to be
in relinked object files git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23922 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/analyze')
-rw-r--r--tools/analyze/Makefile3
-rw-r--r--tools/analyze/analyze.cpp1
2 files changed, 3 insertions, 1 deletions
diff --git a/tools/analyze/Makefile b/tools/analyze/Makefile
index 74a6f4acbf..f5d492c82e 100644
--- a/tools/analyze/Makefile
+++ b/tools/analyze/Makefile
@@ -8,7 +8,8 @@
##===----------------------------------------------------------------------===##
LEVEL = ../..
TOOLNAME = analyze
-USEDLIBS = LLVMAsmParser LLVMBCReader LLVMAnalysis LLVMipa LLVMDataStructure \
+USEDLIBS = LLVMAsmParser LLVMBCReader LLVMAnalysis.a LLVMipa.a \
+ LLVMDataStructure.a \
LLVMScalarOpts.a LLVMTransforms.a LLVMTarget.a LLVMScalarOpts.a \
LLVMTransformUtils.a LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a
diff --git a/tools/analyze/analyze.cpp b/tools/analyze/analyze.cpp
index 2e73e345e0..95e205912d 100644
--- a/tools/analyze/analyze.cpp
+++ b/tools/analyze/analyze.cpp
@@ -21,6 +21,7 @@
#include "llvm/Bytecode/Reader.h"
#include "llvm/Assembly/Parser.h"
#include "llvm/Analysis/Verifier.h"
+#include "llvm/Analysis/LinkAllAnalyses.h"
#include "llvm/Target/TargetData.h"
#include "llvm/Support/PassNameParser.h"
#include "llvm/System/Signals.h"