Skip to content

Commit

Permalink
frontend: Fix hang when loading very large designs
Browse files Browse the repository at this point in the history
Signed-off-by: David Shah <[email protected]>
  • Loading branch information
gatecat committed Jan 16, 2020
1 parent 54c1bc1 commit b67ba18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/frontend_base.h
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ template <typename FrontendType> struct GenericFrontend
NetInfo *net;
if (impl.is_vector_bit_constant(bits, i)) {
// Create a constant driver if one is needed
net = create_constant_net(m, name + "." + port_bit_name + "$const",
net = create_constant_net(m, inst_name.str(ctx) + "." + port_bit_name + "$const",
impl.get_vector_bit_constval(bits, i));
} else {
// Otherwise, lookup (creating if needed) the net with this index
Expand Down

0 comments on commit b67ba18

Please sign in to comment.