diff options
Diffstat (limited to 'llvm/tools/opt/GraphPrinters.cpp')
| -rw-r--r-- | llvm/tools/opt/GraphPrinters.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/tools/opt/GraphPrinters.cpp b/llvm/tools/opt/GraphPrinters.cpp index 5e8a859443c..cb0b6643ae3 100644 --- a/llvm/tools/opt/GraphPrinters.cpp +++ b/llvm/tools/opt/GraphPrinters.cpp @@ -60,6 +60,9 @@ namespace llvm { namespace { struct CallGraphPrinter : public ModulePass { + static const int ID; // Pass ID, replacement for typeid + CallGraphPrinter() : ModulePass((intptr_t)&ID) {} + virtual bool runOnModule(Module &M) { WriteGraphToFile(std::cerr, "callgraph", &getAnalysis<CallGraph>()); return false; @@ -74,6 +77,7 @@ namespace { } }; + const int CallGraphPrinter::ID = 0; RegisterPass<CallGraphPrinter> P2("print-callgraph", "Print Call Graph to 'dot' file"); } |

