We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
my_module u_my_instance( `ifdef TEST .port1 (wire1), `endif .port2 (wire2) ); logic a; // Incorrect indentation.
The text was updated successfully, but these errors were encountered:
Found another case which causes them to break:
if (`SOME_TYPE(var)) a = b; // Incorrect indentation.
Sorry, something went wrong.
More examples.
In the following scenarios my_function() has one extra indentation level:
my_function()
assign test = { 3'b0 , `ifdef SOMETHING 1'b1 `else 1'b0 `endif }; my_function();
or:
assign test = { 3'b0 `ifdef SOMETHING , 1'b1 `endif }; my_function();
I've been working on something for a while that should address this among a few other issues.
vhda
No branches or pull requests
The text was updated successfully, but these errors were encountered: