Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix hierarchical paths inside generate arrays #1031

Merged
merged 3 commits into from
Jun 16, 2024

Commits on Jun 15, 2024

  1. Fix hierarchical paths inside generate arrays

    Take some input with an unnamed generate array, e.g.
    
      module top;
        genvar i;
        for (i = 0; i < 1; i = i + 1) begin
          logic a;
        end
      endmodule
    
    make a fix so that the hierpath of the wire is `top.genblk1[0].a` not
     `top[0].a`.
    povik committed Jun 15, 2024
    Configuration menu
    Copy the full SHA
    e825e31 View commit details
    Browse the repository at this point in the history
  2. Add a test

    povik committed Jun 15, 2024
    Configuration menu
    Copy the full SHA
    56e1ed4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f43ddd5 View commit details
    Browse the repository at this point in the history