aboutsummaryrefslogtreecommitdiff
path: root/include/compiler.h
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2019-03-12 19:28:15 +0100
committerdec05eba <dec05eba@protonmail.com>2020-07-25 14:36:46 +0200
commit2e942f12fc94626f884ba38192b530122a5f0e43 (patch)
tree85ef17455f0357d5a58952a104251b5e5eff66d7 /include/compiler.h
parentc7d6e9eef452be6e1b5f393c30a19b7d449f6991 (diff)
Turn ast resolve/ssa generation thread work to generic workflow - better for future steps
Diffstat (limited to 'include/compiler.h')
-rw-r--r--include/compiler.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/compiler.h b/include/compiler.h
index 4e24f11..69d0254 100644
--- a/include/compiler.h
+++ b/include/compiler.h
@@ -21,8 +21,7 @@ struct amal_compiler {
int usable_thread_count;
bool started;
amal_mutex mutex;
- int resolve_ast_index;
- int generate_ssa_index;
+ int generic_work_object_index;
};
CHECK_RESULT int amal_compiler_init(amal_compiler *self);