diff options
| author | Aleksander Birkeland <pingnor@gmail.com> | 2017-12-04 16:05:42 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-12-04 16:05:42 +0100 |
| commit | 265c05927f11195e6242fc576a567042ea7f3b2e (patch) | |
| tree | bbf00709bc1fa63e7d63da9f3b257847a9550350 /src/ir.cpp | |
| parent | 05ad38ae2d8808ba09f9c8d41480e780b20ada85 (diff) | |
Added skip for Entity_ProcedureGrouping
Diffstat (limited to 'src/ir.cpp')
| -rw-r--r-- | src/ir.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir.cpp b/src/ir.cpp index e4ce6fe83..f1b6a5ee0 100644 --- a/src/ir.cpp +++ b/src/ir.cpp @@ -8314,7 +8314,7 @@ void ir_gen_tree(irGen *s) { continue; } - if (e->kind == Entity_Variable) { + if (e->kind == Entity_Variable || e->kind == Entity_ProcedureGrouping) { // NOTE(bill): Handled above as it requires a specific load order continue; } |