forked from github/verilator
19 lines
1.1 KiB
Plaintext
19 lines
1.1 KiB
Plaintext
%Error-PROCASSWIRE: t/t_lint_always_comb_bad.v:28: Procedural assignment to wire, perhaps intended var (IEEE 2017 6.5): 'temp1'
|
|
: ... In instance t
|
|
temp1 = 'h0;
|
|
^~~~~
|
|
%Error-PROCASSWIRE: t/t_lint_always_comb_bad.v:30: Procedural assignment to wire, perhaps intended var (IEEE 2017 6.5): 'temp1'
|
|
: ... In instance t
|
|
temp1 = (temp1_d1r - 'h1);
|
|
^~~~~
|
|
%Warning-ALWCOMBORDER: t/t_lint_always_comb_bad.v:31: Always_comb variable driven after use: 'mid'
|
|
: ... In instance t
|
|
mid = (temp1_d1r == 'h0);
|
|
^~~
|
|
... Use "/* verilator lint_off ALWCOMBORDER */" and lint_on around source to disable this message.
|
|
%Error-PROCASSWIRE: t/t_lint_always_comb_bad.v:45: Procedural assignment to wire, perhaps intended var (IEEE 2017 6.5): 'temp1_d1r'
|
|
: ... In instance t
|
|
temp1_d1r <= temp1;
|
|
^~~~~~~~~
|
|
%Error: Exiting due to
|