diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2016-11-27 00:14:19 -0500 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2016-11-27 00:14:19 -0500 |
| commit | bd4d4ee51efebb79ed7b563a10eec992a71220fd (patch) | |
| tree | 4f01f7f8c967dc8e94ef94eaedfa2f46978ec04d /src/all_types.hpp | |
| parent | 1fba7f36960551fe0a12aa754c2d789c8784a8cc (diff) | |
| download | zig-bd4d4ee51efebb79ed7b563a10eec992a71220fd.tar.gz zig-bd4d4ee51efebb79ed7b563a10eec992a71220fd.zip | |
IR: detect error for exceeding branch quota
Diffstat (limited to 'src/all_types.hpp')
| -rw-r--r-- | src/all_types.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/all_types.hpp b/src/all_types.hpp index 092885d091..5ff3ce9332 100644 --- a/src/all_types.hpp +++ b/src/all_types.hpp @@ -36,6 +36,8 @@ struct IrExecutable { ZigList<IrBasicBlock *> basic_block_list; size_t mem_slot_count; size_t next_debug_id; + size_t backward_branch_count; + size_t backward_branch_quota; bool invalid; ZigList<LabelTableEntry *> all_labels; ZigList<AstNode *> goto_list; |
