RTL lint warnings #670
Labels
Component:RTL
For issues in the RTL (e.g. for files in the rtl directory)
Type:Enhancement
For feature requests and enhancements
WAIVED:CV32E40P
Issue does not impact a major release of CV32E40P and is waived
The E40P generates these lint warnings. They can all be fixed either by specifying the width of the constant (e.g. 1'b1 instead of 1) or casting to a user defined type.
e.g.
typedef logic [31:0] word_t;
word_t a,b,c;
always_comb a = (word_t)'(b+c);
removes the warning from the loss of carry bit
The text was updated successfully, but these errors were encountered: