1*0a6a1f1dSLionel Sambuc //===- BreakpointPrinter.h - Breakpoint location printer ------------------===//
2*0a6a1f1dSLionel Sambuc //
3*0a6a1f1dSLionel Sambuc //                     The LLVM Compiler Infrastructure
4*0a6a1f1dSLionel Sambuc //
5*0a6a1f1dSLionel Sambuc // This file is distributed under the University of Illinois Open Source
6*0a6a1f1dSLionel Sambuc // License. See LICENSE.TXT for details.
7*0a6a1f1dSLionel Sambuc //
8*0a6a1f1dSLionel Sambuc //===----------------------------------------------------------------------===//
9*0a6a1f1dSLionel Sambuc ///
10*0a6a1f1dSLionel Sambuc /// \file
11*0a6a1f1dSLionel Sambuc /// \brief Breakpoint location printer.
12*0a6a1f1dSLionel Sambuc ///
13*0a6a1f1dSLionel Sambuc //===----------------------------------------------------------------------===//
14*0a6a1f1dSLionel Sambuc #ifndef LLVM_TOOLS_OPT_BREAKPOINTPRINTER_H
15*0a6a1f1dSLionel Sambuc #define LLVM_TOOLS_OPT_BREAKPOINTPRINTER_H
16*0a6a1f1dSLionel Sambuc 
17*0a6a1f1dSLionel Sambuc namespace llvm {
18*0a6a1f1dSLionel Sambuc 
19*0a6a1f1dSLionel Sambuc class ModulePass;
20*0a6a1f1dSLionel Sambuc class raw_ostream;
21*0a6a1f1dSLionel Sambuc 
22*0a6a1f1dSLionel Sambuc ModulePass *createBreakpointPrinter(raw_ostream &out);
23*0a6a1f1dSLionel Sambuc }
24*0a6a1f1dSLionel Sambuc 
25*0a6a1f1dSLionel Sambuc #endif // LLVM_TOOLS_OPT_BREAKPOINTPRINTER_H
26