blob: 2877555f852ce56648424a85b3bda5d038655d66 [file] [log] [blame]
Eli Bendersky54dc2832014-02-12 16:48:02 +00001//===- BreakpointPrinter.h - Breakpoint location printer ------------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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 Bendersky54dc2832014-02-12 16:48:02 +00006//
7//===----------------------------------------------------------------------===//
8///
9/// \file
Adrian Prantl5f8f34e42018-05-01 15:54:18 +000010/// Breakpoint location printer.
Eli Bendersky54dc2832014-02-12 16:48:02 +000011///
12//===----------------------------------------------------------------------===//
13#ifndef LLVM_TOOLS_OPT_BREAKPOINTPRINTER_H
14#define LLVM_TOOLS_OPT_BREAKPOINTPRINTER_H
15
16namespace llvm {
17
18class ModulePass;
19class raw_ostream;
20
21ModulePass *createBreakpointPrinter(raw_ostream &out);
22}
23
24#endif // LLVM_TOOLS_OPT_BREAKPOINTPRINTER_H