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
Author Name: Clifford Wolf (@cliffordwolf) Original Redmine Issue: 774 from https://www.veripool.org Original Date: 2014-05-24 Original Assignee: Wilson Snyder (@wsnyder)
For a=5, b=35 this should return y=0, but Verilator f705f9b returns y=8 instead:
module issue_051(a, b, y); input [3:0] a; input [5:0] b; output [3:0] y; assign y = 64'd0 | (a << b); endmodule
Self-contained test case: http://svn.clifford.at/handicraft/2014/verilatortest/test018.v http://svn.clifford.at/handicraft/2014/verilatortest/test018.cc http://svn.clifford.at/handicraft/2014/verilatortest/test018.sh
The text was updated successfully, but these errors were encountered:
Original Redmine Comment Author Name: Wilson Snyder (@wsnyder) Original Date: 2014-06-10T23:14:04Z
Another massively over-shifting corner case.
Fixed in git towards 3.861.
Original Redmine Comment Author Name: Wilson Snyder (@wsnyder) Original Date: 2014-06-11T00:58:08Z
In 3.862.
wsnyder
Successfully merging a pull request may close this issue.
Author Name: Clifford Wolf (@cliffordwolf)
Original Redmine Issue: 774 from https://www.veripool.org
Original Date: 2014-05-24
Original Assignee: Wilson Snyder (@wsnyder)
For a=5, b=35 this should return y=0, but Verilator f705f9b returns y=8 instead:
Self-contained test case:
http://svn.clifford.at/handicraft/2014/verilatortest/test018.v
http://svn.clifford.at/handicraft/2014/verilatortest/test018.cc
http://svn.clifford.at/handicraft/2014/verilatortest/test018.sh
The text was updated successfully, but these errors were encountered: