diff options
author | Claire Wolf <claire@symbioticeda.com> | 2020-05-01 17:26:07 +0200 |
---|---|---|
committer | Claire Wolf <claire@symbioticeda.com> | 2020-05-02 11:21:01 +0200 |
commit | f38d76efbfa456533837d614822d2b89302386f9 (patch) | |
tree | 905b269eadc8a5a770fce334fb8bf4e38382a116 /tests | |
parent | 88185f8959dc53fd60605747cc93a6129fc1bab3 (diff) | |
download | yosys-f38d76efbfa456533837d614822d2b89302386f9.tar.gz yosys-f38d76efbfa456533837d614822d2b89302386f9.tar.bz2 yosys-f38d76efbfa456533837d614822d2b89302386f9.zip |
Bugfix in partsel.v signed indices test cases
Signed-off-by: Claire Wolf <claire@symbioticeda.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/simple/partsel.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/simple/partsel.v b/tests/simple/partsel.v index dd66ded55..5e9730d6b 100644 --- a/tests/simple/partsel.v +++ b/tests/simple/partsel.v @@ -89,7 +89,7 @@ module partsel_test005 ( endmodule module partsel_test006 ( - input [31:0] din, + input [31:-32] din, input signed [4:0] n, output reg [31:-32] dout ); @@ -101,7 +101,7 @@ endmodule module partsel_test007 ( - input [31:0] din, + input [31:-32] din, input signed [4:0] n, output reg [31:-32] dout ); |