3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-27 02:45:52 +00:00

Fixed gcc compiler warnings with release build

This commit is contained in:
Clifford Wolf 2014-02-06 22:49:14 +01:00
parent 0192f1c66e
commit f4f230d7cc
2 changed files with 2 additions and 2 deletions

View file

@ -1602,7 +1602,7 @@ void AstNode::mem2reg_as_needed_pass1(std::map<AstNode*, std::set<std::string>>
if (proc_flags_p) {
for (auto it : *proc_flags_p)
assert((it.second & ~0xff000000) == 0);
log_assert((it.second & ~0xff000000) == 0);
delete proc_flags_p;
}
}