1//===- llvm/CodeGen/MachineVerifier.h - Machine Code Verifier ---*- 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_CODEGEN_MACHINEVERIFIER_H
10#define LLVM_CODEGEN_MACHINEVERIFIER_H
11
12#include "llvm/CodeGen/MachinePassManager.h"
13#include <string>
14
15namespace llvm {
16class MachineVerifierPass : public PassInfoMixin<MachineVerifierPass> {
17 std::string Banner;
18
19public:
20 MachineVerifierPass(const std::string &Banner = std::string())
21 : Banner(Banner) {}
22 PreservedAnalyses run(MachineFunction &MF,
23 MachineFunctionAnalysisManager &MFAM);
24};
25
26} // namespace llvm
27
28#endif // LLVM_CODEGEN_MACHINEVERIFIER_H
29