LLVM 19.0.0git
LinkDiagnosticInfo.h
Go to the documentation of this file.
1//===- LinkDiagnosticInfo.h -------------------------------------*- C++ -*-===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_LIB_LINKER_LINK_DIAGNOSTIC_INFO_H
10#define LLVM_LIB_LINKER_LINK_DIAGNOSTIC_INFO_H
11
13
14namespace llvm {
16 const Twine &Msg;
17
18public:
19 LinkDiagnosticInfo(DiagnosticSeverity Severity, const Twine &Msg);
20 void print(DiagnosticPrinter &DP) const override;
21};
22}
23
24#endif
This is the base abstract class for diagnostic reporting in the backend.
Interface for custom diagnostic printing.
void print(DiagnosticPrinter &DP) const override
Print using the given DP a user-friendly message.
Definition: IRMover.cpp:355
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition: Twine.h:81
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
DiagnosticSeverity
Defines the different supported severity of a diagnostic.