diff options
Diffstat (limited to 'frontends/ilang/parser.y')
-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; } | |