LLVM API Documentation

CallPrinter.h
Go to the documentation of this file.
00001 //===-- CallPrinter.h - Call graph printer external interface ----*- C++ -*-===//
00002 //
00003 //                     The LLVM Compiler Infrastructure
00004 //
00005 // This file is distributed under the University of Illinois Open Source
00006 // License. See LICENSE.TXT for details.
00007 //
00008 //===----------------------------------------------------------------------===//
00009 //
00010 // This file defines external functions that can be called to explicitly
00011 // instantiate the call graph printer.
00012 //
00013 //===----------------------------------------------------------------------===//
00014 
00015 #ifndef LLVM_ANALYSIS_CALLPRINTER_H
00016 #define LLVM_ANALYSIS_CALLPRINTER_H
00017 
00018 namespace llvm {
00019 
00020   class ModulePass;
00021 
00022   ModulePass *createCallGraphViewerPass();
00023   ModulePass *createCallGraphPrinterPass();
00024 
00025 } // end namespace llvm
00026 
00027 #endif