Skip to content

Commit f4f6549

Browse files
committed
portarcs: Fix confusing disconnected and zero-delay case
1 parent 2c66557 commit f4f6549

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

passes/cmds/portarcs.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ struct PortarcsPass : Pass {
203203
for (auto bit : outputs) {
204204
int *p = annotations.at(canonical_bit(bit));
205205
for (int i = 0; i < inputs.size(); i++)
206-
p[i] = 0;
206+
p[i] = -1;
207207
}
208208

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

0 commit comments

Comments
 (0)