Merge pull request #4587 from hnpl/main

Initialize area stats in stat pass
This commit is contained in:
Martin Povišer 2024-09-09 07:47:08 +02:00 committed by GitHub
commit 982fade0df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -44,8 +44,8 @@ struct statdata_t
#define X(_name) unsigned int _name;
STAT_INT_MEMBERS
#undef X
double area;
double sequential_area;
double area = 0;
double sequential_area = 0;
string tech;
std::map<RTLIL::IdString, int> techinfo;