summaryrefslogtreecommitdiff
path: root/tools/analyze/analyze.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/analyze/analyze.cpp')
-rw-r--r--tools/analyze/analyze.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/analyze/analyze.cpp b/tools/analyze/analyze.cpp
index 2d960e90a4..02ee645719 100644
--- a/tools/analyze/analyze.cpp
+++ b/tools/analyze/analyze.cpp
@@ -54,7 +54,7 @@ static void printPass(PassType &P, ostream &O, Function &F) {
// specialize the template here for them...
//
template<>
-static void printPass(DataStructure &P, ostream &O, Module &M) {
+static void printPass(LocalDataStructures &P, ostream &O, Module &M) {
P.print(O, &M);
}
@@ -275,10 +275,10 @@ struct {
{ exprs , Create<PrinterPass<Exprs> > },
// IP Analyses...
- { printmodule , createPrintModulePass },
+ { printmodule , createPrintModulePass },
{ printusedtypes , New<Pass, FindUsedTypes> },
{ callgraph , New<Pass, CallGraph> },
- { datastructure , New<Pass, DataStructure> },
+ { datastructure , New<Pass, LocalDataStructures> },
{ unsafepointertypes, New<Pass, FindUnsafePointerTypes> },
// Dominator analyses