aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-10-18 04:58:34 +0000
committerChris Lattner <sabre@nondot.org>2009-10-18 04:58:34 +0000
commit0ec5c324895c4c86cc749428de360d7e6b102825 (patch)
tree58463240fa806ff4d0845d0da09980b018485c54
parente62b2633e8c782f8805bbcb13d92179f179d6143 (diff)
fix the other issue with ID's, hopefully really fixing the linux build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84403 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Analysis/DomPrinter.cpp13
1 files changed, 6 insertions, 7 deletions
diff --git a/lib/Analysis/DomPrinter.cpp b/lib/Analysis/DomPrinter.cpp
index 82e13a9ef2..f1b44d0356 100644
--- a/lib/Analysis/DomPrinter.cpp
+++ b/lib/Analysis/DomPrinter.cpp
@@ -19,7 +19,6 @@
//===----------------------------------------------------------------------===//
#include "llvm/Analysis/DomPrinter.h"
-
#include "llvm/Pass.h"
#include "llvm/Function.h"
#include "llvm/Analysis/CFGPrinter.h"
@@ -148,10 +147,10 @@ namespace {
template <class Analysis, bool OnlyBBS>
struct GenericGraphPrinter : public FunctionPass {
- static char ID;
std::string Name;
- GenericGraphPrinter(std::string GraphName) : FunctionPass(&ID) {
+ GenericGraphPrinter(std::string GraphName, const void *ID)
+ : FunctionPass(ID) {
Name = GraphName;
}
@@ -181,27 +180,27 @@ struct GenericGraphPrinter : public FunctionPass {
struct DomPrinter
: public GenericGraphPrinter<DominatorTree, false> {
static char ID;
- DomPrinter() : GenericGraphPrinter<DominatorTree, false>("dom"){}
+ DomPrinter() : GenericGraphPrinter<DominatorTree, false>("dom", &ID) {}
};
struct DomOnlyPrinter
: public GenericGraphPrinter<DominatorTree, true> {
static char ID;
- DomOnlyPrinter() : GenericGraphPrinter<DominatorTree, true>("domonly"){}
+ DomOnlyPrinter() : GenericGraphPrinter<DominatorTree, true>("domonly", &ID) {}
};
struct PostDomPrinter
: public GenericGraphPrinter<PostDominatorTree, false> {
static char ID;
PostDomPrinter() :
- GenericGraphPrinter<PostDominatorTree, false>("postdom"){}
+ GenericGraphPrinter<PostDominatorTree, false>("postdom", &ID) {}
};
struct PostDomOnlyPrinter
: public GenericGraphPrinter<PostDominatorTree, true> {
static char ID;
PostDomOnlyPrinter() :
- GenericGraphPrinter<PostDominatorTree, true>("postdomonly"){}
+ GenericGraphPrinter<PostDominatorTree, true>("postdomonly", &ID) {}
};
} // end anonymous namespace