aboutsummaryrefslogtreecommitdiff
path: root/src/ir.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ir.cpp')
-rw-r--r--src/ir.cpp6
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;