slightly optimize and refactor

This commit is contained in:
2024-10-23 09:25:13 +00:00
parent c6e529ec0f
commit 77719e07e7
7 changed files with 11 additions and 30 deletions

View File

@ -372,6 +372,7 @@ void ConductRegAllocForFunction(std::shared_ptr<FunctionDefItem> func) {
} while (ConductColoring(func, cfg, confgraph));
TranslateColorResult(func, cfg, confgraph);
RemoveCallingConventionKeeper(func, cfg, confgraph);
PairMoveEliminate(func, cfg, confgraph);
// func->RecursivePrint(std::cerr);
}