Eli Bendersky | a0ea8fa | 2014-02-12 16:48:02 +0000 | [diff] [blame] | 1 | //===- BreakpointPrinter.h - Breakpoint location printer ------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | /// |
| 10 | /// \file |
Adrian Prantl | 26b584c | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 11 | /// Breakpoint location printer. |
Eli Bendersky | a0ea8fa | 2014-02-12 16:48:02 +0000 | [diff] [blame] | 12 | /// |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | #ifndef LLVM_TOOLS_OPT_BREAKPOINTPRINTER_H |
| 15 | #define LLVM_TOOLS_OPT_BREAKPOINTPRINTER_H |
| 16 | |
| 17 | namespace llvm { |
| 18 | |
| 19 | class ModulePass; |
| 20 | class raw_ostream; |
| 21 | |
| 22 | ModulePass *createBreakpointPrinter(raw_ostream &out); |
| 23 | } |
| 24 | |
| 25 | #endif // LLVM_TOOLS_OPT_BREAKPOINTPRINTER_H |