2014-11-24 09:08:18 +00:00
|
|
|
//===- 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2014-11-24 09:08:18 +00:00
|
|
|
///
|
|
|
|
/// \file
|
|
|
|
/// \brief Breakpoint location printer.
|
|
|
|
///
|
2009-10-14 17:57:32 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2014-11-24 09:08:18 +00:00
|
|
|
#ifndef LLVM_TOOLS_OPT_BREAKPOINTPRINTER_H
|
|
|
|
#define LLVM_TOOLS_OPT_BREAKPOINTPRINTER_H
|
2009-10-14 17:57:32 +00:00
|
|
|
|
2014-11-24 09:08:18 +00:00
|
|
|
namespace llvm {
|
2009-10-14 17:57:32 +00:00
|
|
|
|
2014-11-24 09:08:18 +00:00
|
|
|
class ModulePass;
|
|
|
|
class raw_ostream;
|
2010-02-16 09:30:23 +00:00
|
|
|
|
2014-11-24 09:08:18 +00:00
|
|
|
ModulePass *createBreakpointPrinter(raw_ostream &out);
|
2009-10-14 17:57:32 +00:00
|
|
|
}
|
2014-11-24 09:08:18 +00:00
|
|
|
|
|
|
|
#endif // LLVM_TOOLS_OPT_BREAKPOINTPRINTER_H
|