Eli Bendersky | 54dc283 | 2014-02-12 16:48:02 +0000 | [diff] [blame] | 1 | //===- BreakpointPrinter.h - Breakpoint location printer ------------------===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Eli Bendersky | 54dc283 | 2014-02-12 16:48:02 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | /// |
| 9 | /// \file |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 10 | /// Breakpoint location printer. |
Eli Bendersky | 54dc283 | 2014-02-12 16:48:02 +0000 | [diff] [blame] | 11 | /// |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | #ifndef LLVM_TOOLS_OPT_BREAKPOINTPRINTER_H |
| 14 | #define LLVM_TOOLS_OPT_BREAKPOINTPRINTER_H |
| 15 | |
| 16 | namespace llvm { |
| 17 | |
| 18 | class ModulePass; |
| 19 | class raw_ostream; |
| 20 | |
| 21 | ModulePass *createBreakpointPrinter(raw_ostream &out); |
| 22 | } |
| 23 | |
| 24 | #endif // LLVM_TOOLS_OPT_BREAKPOINTPRINTER_H |