We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b06807 commit 2b9926eCopy full SHA for 2b9926e
passes/techmap/flatten.cc
@@ -255,7 +255,8 @@ struct FlattenWorker
255
256
for (int i = 0; i < GetSize(new_conn.first); i++) {
257
const auto lhs = new_conn.first[i], rhs = new_conn.second[i];
258
- auto& sigsig = !lhs.is_wire() || !lhs.wire->name.isPublic() ? skip_conn : barrier_conn;
+ log_assert(lhs.is_wire());
259
+ auto& sigsig = !lhs.wire->name.isPublic() ? skip_conn : barrier_conn;
260
sigsig.first.append(lhs);
261
sigsig.second.append(rhs);
262
}
0 commit comments