You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Usage of an unknown define can crash the tool and trigger an internal assertion.
Example input:
module top;
wire foo = 3 < `BAR;
endmodule
The AST contains InvalidExpression but gets passed to PopulateNetlist anyway. For some reason compilation->hasIssuedErrors() and/or driver.reportDiagnostics(/* quiet */ false) doesn't catch this.
The text was updated successfully, but these errors were encountered:
Usage of an unknown define can crash the tool and trigger an internal assertion.
Example input:
The AST contains
InvalidExpression
but gets passed toPopulateNetlist
anyway. For some reasoncompilation->hasIssuedErrors()
and/ordriver.reportDiagnostics(/* quiet */ false)
doesn't catch this.The text was updated successfully, but these errors were encountered: