aboutsummaryrefslogtreecommitdiff
path: root/include/ast.h
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2019-03-14 21:24:44 +0100
committerdec05eba <dec05eba@protonmail.com>2020-07-25 14:36:46 +0200
commitd4ca9de33906972fa06bd2b7e38cbc2b4d3574c2 (patch)
tree5e858b73db61a0f85ddfd02dd3076a8b3c8aa5af /include/ast.h
parentad54d804fef1e1eb646d8ea4bd7ce65363e94fa8 (diff)
Add ssa string
Diffstat (limited to 'include/ast.h')
-rw-r--r--include/ast.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/ast.h b/include/ast.h
index b63dab5..ae9b6b3 100644
--- a/include/ast.h
+++ b/include/ast.h
@@ -8,6 +8,7 @@
#include "std/scoped_allocator.h"
#include "std/hash_map.h"
#include "binop_type.h"
+#include "ssa/ssa.h"
#include <setjmp.h>
@@ -67,6 +68,7 @@ struct Scope {
struct FunctionDecl {
Scope body;
+ SsaFuncIndex ssa_func_index;
};
struct FunctionCall {