Skip to content

Commit

Permalink
portarcs: Fix confusing disconnected and zero-delay case
Browse files Browse the repository at this point in the history
  • Loading branch information
povik committed Dec 5, 2024
1 parent 2c66557 commit f4f6549
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion passes/cmds/portarcs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ struct PortarcsPass : Pass {
for (auto bit : outputs) {
int *p = annotations.at(canonical_bit(bit));
for (int i = 0; i < inputs.size(); i++)
p[i] = 0;
p[i] = -1;
}

for (int i = 0; i < ordering.size(); i++) {
Expand Down

0 comments on commit f4f6549

Please sign in to comment.