From b35b3e1bf70bf764940498247b1db5bb02761160 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Tue, 12 Mar 2019 01:27:54 +0100 Subject: Starting on ssa --- include/ast.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/ast.h') diff --git a/include/ast.h b/include/ast.h index 3eb7bb6..497488f 100644 --- a/include/ast.h +++ b/include/ast.h @@ -131,6 +131,9 @@ void binop_init(Binop *self); CHECK_RESULT int scope_init(Scope *self, ScopedAllocator *allocator); CHECK_RESULT int scope_add_child(Scope *self, Ast *child); +/* longjump to compiler env on failure */ void scope_resolve(Scope *self, AstCompilerContext *context); +/* longjump to compiler env on failure */ +void scope_generate_ssa(Scope *self, AstCompilerContext *context); #endif -- cgit v1.2.3