start with type inference
[ccc.git] / sem / scc.h
1 #ifndef SEM_SCC_H
2 #define SEM_SCC_H
3
4 #include "../ast.h"
5
6 // Split up the AST in strongly connected components
7 struct ast *ast_scc(struct ast *ast);
8
9 #endif