diff options
author | dec05eba <dec05eba@protonmail.com> | 2019-03-12 19:28:15 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-07-25 14:36:46 +0200 |
commit | 2e942f12fc94626f884ba38192b530122a5f0e43 (patch) | |
tree | 85ef17455f0357d5a58952a104251b5e5eff66d7 /include | |
parent | c7d6e9eef452be6e1b5f393c30a19b7d449f6991 (diff) |
Turn ast resolve/ssa generation thread work to generic workflow - better for future steps
Diffstat (limited to 'include')
-rw-r--r-- | include/compiler.h | 3 |
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); |