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 |
11 | namespace llvm { |
12 | class FunctionPass; |
13 | |
14 | namespace exegesis { |
15 | FunctionPass *createRISCVPreprocessingPass(); |
16 | FunctionPass *createRISCVPostprocessingPass(); |
17 | } // namespace exegesis |
18 | } // namespace llvm |
19 | #endif |
20 | |