20 lines · c
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-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLVM_TOOLS_EXEGESIS_LIB_RISCV_RISCVEXEGESISPASSES_H10#define LLVM_TOOLS_EXEGESIS_LIB_RISCV_RISCVEXEGESISPASSES_H11namespace llvm {12class FunctionPass;13 14namespace exegesis {15FunctionPass *createRISCVPreprocessingPass();16FunctionPass *createRISCVPostprocessingPass();17} // namespace exegesis18} // namespace llvm19#endif20