diff options
| author | Ginger Bill <bill@gingerbill.org> | 2016-09-01 20:38:44 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2016-09-01 20:38:44 +0100 |
| commit | fa09d805e23c59cb881573a7a1aee5fbc5752ea2 (patch) | |
| tree | 5407c69e5f63b0d3dcab9eef6fee323273070445 /src/main.cpp | |
| parent | ff6e21cb879397982cddf3cf5f47bba681271a2c (diff) | |
Match statements; Type System change (Type_Record for all sum and product types)
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index b37ffad48..c1caafc53 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -72,6 +72,8 @@ int main(int argc, char **argv) { defer (destroy_checker(&checker)); check_parsed_files(&checker); + +#if 1 ssaGen ssa = {}; if (!ssa_gen_init(&ssa, &checker)) return 1; @@ -90,8 +92,6 @@ int main(int argc, char **argv) { output_name, cast(int)base_name_len, output_name); if (exit_code != 0) return exit_code; -#if 1 -#endif gbString lib_str = gb_string_make(gb_heap_allocator(), "-lKernel32.lib"); char lib_str_buf[1024] = {}; @@ -119,5 +119,7 @@ int main(int argc, char **argv) { if (run_output) { win32_exec_command_line_app("%.*s.exe", cast(int)base_name_len, output_name); } +#endif + return 0; } |