setup structure for graph coloring

This commit is contained in:
2024-10-20 15:49:06 +00:00
parent 5468e8468d
commit 1073750a8d
4 changed files with 40 additions and 5 deletions

6
src/opt/confgraph.cpp Normal file
View File

@ -0,0 +1,6 @@
#include "confgraph.h"
#include <unordered_map>
#include "cfg.h"
ConfGraph BuildConfGraph(CFGType &cfg) { ; }
bool TryColoring(std::shared_ptr<FunctionDefItem> src, CFGType &cfg, ConfGraph& confgraph) { return false; }