mirror of https://github.com/YosysHQ/yosys.git
fix sequential area not being included in addition/multiplication
Fixes a bug where the sequential area isn't part of the Stat_numeric_members that are used to automatically add/mul the statdata_t members.
This commit is contained in:
parent
8bde6ac17c
commit
21b93ee1fb
|
|
@ -40,7 +40,7 @@ struct statdata_t
|
|||
X(num_ports) X(num_port_bits) X(num_memories) X(num_memory_bits) X(num_cells) \
|
||||
X(num_processes)
|
||||
|
||||
#define STAT_NUMERIC_MEMBERS STAT_INT_MEMBERS X(area)
|
||||
#define STAT_NUMERIC_MEMBERS STAT_INT_MEMBERS X(area) X(sequential_area)
|
||||
|
||||
#define X(_name) unsigned int _name;
|
||||
STAT_INT_MEMBERS
|
||||
|
|
|
|||
Loading…
Reference in New Issue