diff options
author | Zachary Snow <zach@zachjs.com> | 2021-08-31 11:45:02 -0600 |
---|---|---|
committer | Zachary Snow <zachary.j.snow@gmail.com> | 2021-08-31 12:34:55 -0600 |
commit | b2e9717419e9a852f4e64f12891b8e9742900917 (patch) | |
tree | 3a989a50c1f9beef9068b423f202d4918dcf3d6a /tests/verilog/genvar_loop_decl_1.ys | |
parent | b20bb653ce0bfe452f8a1ff4a7a9b64262acced3 (diff) | |
download | yosys-b2e9717419e9a852f4e64f12891b8e9742900917.tar.gz yosys-b2e9717419e9a852f4e64f12891b8e9742900917.tar.bz2 yosys-b2e9717419e9a852f4e64f12891b8e9742900917.zip |
sv: support declaration in generate for initialization
This is accomplished by generating a unique name for the genvar,
renaming references to the genvar only in the loop's initialization,
guard, and incrementation, and finally adding a localparam inside the
loop body with the original name so that the genvar can be shadowed as
expected.
Diffstat (limited to 'tests/verilog/genvar_loop_decl_1.ys')
-rw-r--r-- | tests/verilog/genvar_loop_decl_1.ys | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/verilog/genvar_loop_decl_1.ys b/tests/verilog/genvar_loop_decl_1.ys new file mode 100644 index 000000000..ded486248 --- /dev/null +++ b/tests/verilog/genvar_loop_decl_1.ys @@ -0,0 +1,14 @@ +read_verilog -sv genvar_loop_decl_1.sv + +select -assert-count 1 gate/genblk1[0].x +select -assert-count 1 gate/genblk1[1].x +select -assert-count 0 gate/genblk1[2].x + +select -assert-count 1 gold/genblk1[0].x +select -assert-count 1 gold/genblk1[1].x +select -assert-count 0 gold/genblk1[2].x + +proc +equiv_make gold gate equiv +equiv_simple +equiv_status -assert |