12 lines
243 B
C++
12 lines
243 B
C++
#pragma once
|
|
|
|
#include "llir.h"
|
|
#include "passes.h"
|
|
|
|
namespace CompSysY {
|
|
void gen_dominance(FunctionPtr_t func);
|
|
void gen_dominance_frontier(FunctionPtr_t func);
|
|
void update_dfs_numbers(BasicBlockPtr_t bb, bool rst);
|
|
|
|
} // namespace CompSysY
|