3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-07-24 08:02:32 +00:00

Merge branch 'YosysHQ:main' into main

This commit is contained in:
Akash Levy 2026-01-12 22:52:03 -08:00 committed by GitHub
commit 58192ad8a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 430 additions and 116 deletions

View file

@ -2161,6 +2161,9 @@ void dump_case_actions(std::ostream &f, std::string indent, RTLIL::CaseRule *cs)
bool dump_proc_switch_ifelse(std::ostream &f, std::string indent, RTLIL::SwitchRule *sw)
{
if (sw->cases.empty())
return true;
for (auto it = sw->cases.begin(); it != sw->cases.end(); ++it) {
if ((*it)->compare.size() == 0) {
break;