18 lines
333 B
C++
18 lines
333 B
C++
// RISCv64Passes.h
|
|
#ifndef RISCV64_PASSES_H
|
|
#define RISCV64_PASSES_H
|
|
|
|
#include "RISCv64LLIR.h"
|
|
|
|
namespace sysy {
|
|
|
|
// 此处为未来优化Pass的基类或独立类定义
|
|
// 例如:
|
|
// class PeepholeOptimizer {
|
|
// public:
|
|
// void runOnMachineFunction(MachineFunction* mfunc);
|
|
// };
|
|
|
|
} // namespace sysy
|
|
|
|
#endif // RISCV64_PASSES_H
|