diff options
author | Chris Lattner <sabre@nondot.org> | 2002-07-10 22:42:53 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-07-10 22:42:53 +0000 |
commit | 4c7b04508ef0069cbd0935aab5d69272a8675cc8 (patch) | |
tree | 341fd3b32f2979c2f542206a311bab5d72a4eb5f /tools/analyze/analyze.cpp | |
parent | cd0b36fb0747c7cf3202fa0633aa7a40fbdbfc3b (diff) |
Rename DataStructure to LocalDataStructures
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2873 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/analyze/analyze.cpp')
-rw-r--r-- | tools/analyze/analyze.cpp | 6 |
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 |