3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-26 18:45:34 +00:00

Replaced signed_parameters API with CONST_FLAG_SIGNED

This commit is contained in:
Clifford Wolf 2013-12-04 14:24:44 +01:00
parent 93a70959f3
commit f4b46ed31e
10 changed files with 11 additions and 16 deletions

View file

@ -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;
} |