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/ilang | |
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/ilang')
-rw-r--r-- | frontends/ilang/parser.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/ilang/parser.y b/frontends/ilang/parser.y index 54c2280a8..4c1abe5ce 100644 --- a/frontends/ilang/parser.y +++ b/frontends/ilang/parser.y @@ -191,7 +191,7 @@ cell_body: } | cell_body TOK_PARAMETER TOK_SIGNED TOK_ID constant TOK_EOL { current_cell->parameters[$4] = *$5; - current_cell->signed_parameters.insert($4); + current_cell->parameters[$4].flags |= RTLIL::CONST_FLAG_SIGNED; free($4); delete $5; } | |