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