LLVM API Documentation

RegionPrinter.h
Go to the documentation of this file.
00001 //===-- RegionPrinter.h - Region 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 region printer.
00012 //
00013 //===----------------------------------------------------------------------===//
00014 
00015 #ifndef LLVM_ANALYSIS_REGIONPRINTER_H
00016 #define LLVM_ANALYSIS_REGIONPRINTER_H
00017 
00018 namespace llvm {
00019   class FunctionPass;
00020   FunctionPass *createRegionViewerPass();
00021   FunctionPass *createRegionOnlyViewerPass();
00022   FunctionPass *createRegionPrinterPass();
00023   FunctionPass *createRegionOnlyPrinterPass();
00024 } // End llvm namespace
00025 
00026 #endif