From: Clifford Wolf Date: Tue, 30 Apr 2019 18:22:50 +0000 (+0200) Subject: Disabled "final loop assignment" feature X-Git-Tag: yosys-0.9~142^2~7 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e35fe1344dd4c8f11632ed2a7f5b0463352a1ee4;p=yosys.git Disabled "final loop assignment" feature Signed-off-by: Clifford Wolf --- diff --git a/frontends/ast/simplify.cc b/frontends/ast/simplify.cc index a342bf5d9..4d4b9dfe1 100644 --- a/frontends/ast/simplify.cc +++ b/frontends/ast/simplify.cc @@ -1172,12 +1172,14 @@ bool AstNode::simplify(bool const_fold, bool at_zero, bool in_lvalue, int stage, varbuf->children[0] = buf; } +#if 0 if (type == AST_FOR) { AstNode *buf = next_ast->clone(); delete buf->children[1]; buf->children[1] = varbuf->children[0]->clone(); current_block->children.insert(current_block->children.begin() + current_block_idx++, buf); } +#endif current_scope[varbuf->str] = backup_scope_varbuf; delete varbuf;