1274955Ssvnmir//===- BreakpointPrinter.h - Breakpoint location printer ------------------===//
2274955Ssvnmir//
3274955Ssvnmir//                     The LLVM Compiler Infrastructure
4274955Ssvnmir//
5274955Ssvnmir// This file is distributed under the University of Illinois Open Source
6274955Ssvnmir// License. See LICENSE.TXT for details.
7274955Ssvnmir//
8274955Ssvnmir//===----------------------------------------------------------------------===//
9274955Ssvnmir///
10274955Ssvnmir/// \file
11274955Ssvnmir/// \brief Breakpoint location printer.
12274955Ssvnmir///
13274955Ssvnmir//===----------------------------------------------------------------------===//
14274955Ssvnmir#ifndef LLVM_TOOLS_OPT_BREAKPOINTPRINTER_H
15274955Ssvnmir#define LLVM_TOOLS_OPT_BREAKPOINTPRINTER_H
16274955Ssvnmir
17274955Ssvnmirnamespace llvm {
18274955Ssvnmir
19274955Ssvnmirclass ModulePass;
20274955Ssvnmirclass raw_ostream;
21274955Ssvnmir
22274955SsvnmirModulePass *createBreakpointPrinter(raw_ostream &out);
23274955Ssvnmir}
24274955Ssvnmir
25274955Ssvnmir#endif // LLVM_TOOLS_OPT_BREAKPOINTPRINTER_H
26