-
Notifications
You must be signed in to change notification settings - Fork 148
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
chore(comp): remove -v95 flag #719
base: main
Are you sure you want to change the base?
chore(comp): remove -v95 flag #719
Conversation
Remove all support code for Verilog 95 compatibility. Not only is V95 ancient, it also doesn't support necessary features like vendor-agnostic attributes, which we will want to use in the future. This also deletes the relevant tests and simplifies a little of the pretty- printing code, too. Signed-off-by: Austin Seipp <[email protected]>
Note, I still want to think about addressing this original complaint from PR 400:
And, I can bring back the Signed test, I'll do that. The other nits were addressed though, I think. I can sti |
I think this is OK to do. I said that there were some places still using it, but I can't find anything that triggers it. The only place that uses
and I have added the following code, to see if the situation ever arises:
And that code is only ever triggered by expression constructed here in
where, again, I have added this code to test if there are every any parameters (that would need
So far I haven't found any examples, but I'm running the full testsuite now. |
The only failure in BSC's testsuite are in
I also made a standalone example like this:
The parsing for this is the first line of |
Remove all support code for Verilog 95 compatibility. Not only is V95 ancient, it also doesn't support necessary features like vendor-agnostic attributes, which we will want to use in the future.
This also deletes the relevant tests and simplifies a little of the pretty-printing code, too.
Attempt to reland the first part of #400 separately from everything else.