diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-06-07 00:02:05 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-06-07 00:02:05 +0200 |
commit | 7c8a7b2131aa672d04ee0ed641f3e6b120f3ec49 (patch) | |
tree | e23811d96f2e4d4995ef549c357af4619a62f165 /frontends/ast/genrtlil.cc | |
parent | 5281562d0e9468c584e6db6f30908e3155a76ad2 (diff) | |
download | yosys-7c8a7b2131aa672d04ee0ed641f3e6b120f3ec49.tar.gz yosys-7c8a7b2131aa672d04ee0ed641f3e6b120f3ec49.tar.bz2 yosys-7c8a7b2131aa672d04ee0ed641f3e6b120f3ec49.zip |
further improved const function support
Diffstat (limited to 'frontends/ast/genrtlil.cc')
-rw-r--r-- | frontends/ast/genrtlil.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/frontends/ast/genrtlil.cc b/frontends/ast/genrtlil.cc index 2efdee10a..9273636f4 100644 --- a/frontends/ast/genrtlil.cc +++ b/frontends/ast/genrtlil.cc @@ -623,10 +623,10 @@ void AstNode::detectSignWidthWorker(int &width_hint, bool &sign_hint) if (id_ast->type == AST_AUTOWIRE) this_width = 1; else { - // current_ast_mod->dumpAst(stdout, ""); - // printf("---\n"); - // dumpAst(stdout, ""); - // fflush(stdout); + // current_ast_mod->dumpAst(NULL, "mod> "); + // log("---\n"); + // id_ast->dumpAst(NULL, "decl> "); + // dumpAst(NULL, "ref> "); log_error("Failed to detect with of signal access `%s' at %s:%d!\n", str.c_str(), filename.c_str(), linenum); } } else { @@ -693,7 +693,7 @@ void AstNode::detectSignWidthWorker(int &width_hint, bool &sign_hint) break; case AST_REPLICATE: - while (children[0]->simplify(true, false, false, 1, -1, false, false) == true) { } + while (children[0]->simplify(true, false, false, 1, -1, false, true) == true) { } if (children[0]->type != AST_CONSTANT) log_error("Left operand of replicate expression is not constant at %s:%d!\n", filename.c_str(), linenum); children[1]->detectSignWidthWorker(sub_width_hint, sub_sign_hint); |