diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-08-27 19:24:30 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-08-27 19:24:30 +0100 |
| commit | 2d20bde4958c001beca98903826c3e82d972a8d3 (patch) | |
| tree | 15ce7108cc8b4cf86e5f1ca9a1c3b89a2323ab06 /src/ir.cpp | |
| parent | b9e347ef5072ac3d1f8dcc1ba2d678109f9ff016 (diff) | |
Remove () grouping for `foreign_library`
Diffstat (limited to 'src/ir.cpp')
| -rw-r--r-- | src/ir.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ir.cpp b/src/ir.cpp index 714af2a6a..b10d3089a 100644 --- a/src/ir.cpp +++ b/src/ir.cpp @@ -6227,9 +6227,9 @@ void ir_build_stmt_internal(irProcedure *proc, AstNode *node) { case_ast_node(us, UsingStmt, node); for_array(i, us->list) { AstNode *decl = unparen_expr(us->list[i]); - if (decl->kind == AstNode_GenDecl) { - ir_build_stmt(proc, decl); - } + // if (decl->kind == AstNode_GenDecl) { + // ir_build_stmt(proc, decl); + // } } case_end; |