diff options
author | Marcelina KoĆcielnicka <mwk@0x04.net> | 2020-07-29 10:00:01 +0200 |
---|---|---|
committer | Marcelina KoĆcielnicka <mwk@0x04.net> | 2020-07-29 12:41:43 +0200 |
commit | dc18bf1969e3550a629ffa4722ad40758fc32535 (patch) | |
tree | 52f7991cd916997c925543a83736951390b80f64 /tests | |
parent | 773b056ffbdf8ab2ee78febd2d3029a61e526f55 (diff) | |
download | yosys-dc18bf1969e3550a629ffa4722ad40758fc32535.tar.gz yosys-dc18bf1969e3550a629ffa4722ad40758fc32535.tar.bz2 yosys-dc18bf1969e3550a629ffa4722ad40758fc32535.zip |
opt_expr: Fix handling of $_XNOR_ cells with A = B.
Fixes #2311.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/opt/bug2311.ys | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/opt/bug2311.ys b/tests/opt/bug2311.ys new file mode 100644 index 000000000..455147cd3 --- /dev/null +++ b/tests/opt/bug2311.ys @@ -0,0 +1,14 @@ +read_verilog -icells << EOT + +module top(...); + +input A; +output Y; + +$_XNOR_ x (.A(A), .B(A), .Y(Y)); + +endmodule + +EOT + +equiv_opt -assert opt_expr |