1//===- RISCVExegesisPasses.h - RISC-V specific Exegesis Passes --*- 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_TOOLS_EXEGESIS_LIB_RISCV_RISCVEXEGESISPASSES_H
10#define LLVM_TOOLS_EXEGESIS_LIB_RISCV_RISCVEXEGESISPASSES_H
11namespace llvm {
12class FunctionPass;
13
14namespace exegesis {
15FunctionPass *createRISCVPreprocessingPass();
16FunctionPass *createRISCVPostprocessingPass();
17} // namespace exegesis
18} // namespace llvm
19#endif
20