diff options
| author | gingerBill <bill@gingerbill.org> | 2018-02-25 14:23:45 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2018-02-25 14:23:45 +0000 |
| commit | 60a7c68aa6071735e4576795989d1af6f59c28dc (patch) | |
| tree | 0728f61d2358084820a2eef0abe6f6ec14c6b3b6 /src/main.cpp | |
| parent | 53571814844976749c8ed27fe6a77c6dd49e627b (diff) | |
Minor code reorganization
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 46a1b4e70..e6d7012cc 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -713,6 +713,7 @@ int main(int arg_count, char **arg_ptr) { return 0; } + timings_start_section(&timings, str_lit("type check")); Checker checker = {0}; @@ -728,6 +729,8 @@ int main(int arg_count, char **arg_ptr) { } // defer (ir_gen_destroy(&ir_gen)); + + timings_start_section(&timings, str_lit("llvm ir gen")); ir_gen_tree(&ir_gen); |