freebsd-dev/contrib/llvm/tools/opt/BreakpointPrinter.h

26 lines
726 B
C
Raw Normal View History

//===- BreakpointPrinter.h - Breakpoint location printer ------------------===//
2009-10-14 17:57:32 +00:00
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
///
/// \file
/// \brief Breakpoint location printer.
///
2009-10-14 17:57:32 +00:00
//===----------------------------------------------------------------------===//
#ifndef LLVM_TOOLS_OPT_BREAKPOINTPRINTER_H
#define LLVM_TOOLS_OPT_BREAKPOINTPRINTER_H
2009-10-14 17:57:32 +00:00
namespace llvm {
2009-10-14 17:57:32 +00:00
class ModulePass;
class raw_ostream;
2010-02-16 09:30:23 +00:00
ModulePass *createBreakpointPrinter(raw_ostream &out);
2009-10-14 17:57:32 +00:00
}
#endif // LLVM_TOOLS_OPT_BREAKPOINTPRINTER_H