diff options
author | Clifford Wolf <clifford@clifford.at> | 2013-12-04 14:24:44 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2013-12-04 14:24:44 +0100 |
commit | f4b46ed31e5f5c41bbd4ee1fdf996ecdc2010174 (patch) | |
tree | ab513e840494e2be4b04149a149f7c12e605e7e4 /frontends/ast/genrtlil.cc | |
parent | 93a70959f3f67ffcee8159b18a5f68904e32a074 (diff) | |
download | yosys-f4b46ed31e5f5c41bbd4ee1fdf996ecdc2010174.tar.gz yosys-f4b46ed31e5f5c41bbd4ee1fdf996ecdc2010174.tar.bz2 yosys-f4b46ed31e5f5c41bbd4ee1fdf996ecdc2010174.zip |
Replaced signed_parameters API with CONST_FLAG_SIGNED
Diffstat (limited to 'frontends/ast/genrtlil.cc')
-rw-r--r-- | frontends/ast/genrtlil.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/frontends/ast/genrtlil.cc b/frontends/ast/genrtlil.cc index 3998c9441..7ebc4b719 100644 --- a/frontends/ast/genrtlil.cc +++ b/frontends/ast/genrtlil.cc @@ -1304,12 +1304,8 @@ RTLIL::SigSpec AstNode::genRTLIL(int width_hint, bool sign_hint) if (child->str.size() == 0) { char buf[100]; snprintf(buf, 100, "$%d", ++para_counter); - if (child->children[0]->is_signed) - cell->signed_parameters.insert(buf); cell->parameters[buf] = child->children[0]->asParaConst(); } else { - if (child->children[0]->is_signed) - cell->signed_parameters.insert(child->str); cell->parameters[child->str] = child->children[0]->asParaConst(); } continue; |