File: t_param_noval_bad.out

package info (click to toggle)
verilator 5.038-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 162,552 kB
  • sloc: cpp: 139,204; python: 20,931; ansic: 10,222; yacc: 6,000; lex: 1,925; makefile: 1,260; sh: 494; perl: 282; fortran: 22
file content (37 lines) | stat: -rw-r--r-- 2,392 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
%Error: t/t_param_noval_bad.v:7:22: Parameter without default value is never given value (IEEE 1800-2023 6.20.1): 'P'
                                  : ... note: In instance 't'
    7 | module t #(parameter P, parameter type T);
      |                      ^
        ... See the manual at https://verilator.org/verilator_doc.html?v=latest for more assistance.
%Error: t/t_param_noval_bad.v:7:40: Parameter type without default value is never given value (IEEE 1800-2023 6.20.1): 'T'
                                  : ... note: In instance 't'
    7 | module t #(parameter P, parameter type T);
      |                                        ^
%Warning-WIDTHTRUNC: t/t_param_noval_bad.v:10:7: Logical operator GENFOR expects 1 bit on the For Test Condition, but For Test Condition's VARREF 'P' generates 32 bits.
                                               : ... note: In instance 't'
   10 |       for (j=0; P; j++)
      |       ^~~
                     ... For warning description see https://verilator.org/warn/WIDTHTRUNC?v=latest
                     ... Use "/* verilator lint_off WIDTHTRUNC */" and lint_on around source to disable this message.
%Error: t/t_param_noval_bad.v:10:7: Non-genvar used in generate for: 'j'
                                  : ... note: In instance 't'
   10 |       for (j=0; P; j++)
      |       ^~~
%Error: t/t_param_noval_bad.v:10:7: Loop unrolling failed.
                                  : ... note: In instance 't'
   10 |       for (j=0; P; j++)
      |       ^~~
%Error-UNSUPPORTED: t/t_param_noval_bad.v:10:7: Unsupported: Can't unroll generate for; Unable to unroll loop
                                              : ... note: In instance 't'
   10 |       for (j=0; P; j++)
      |       ^~~
                    ... For error description see https://verilator.org/warn/UNSUPPORTED?v=latest
%Error: t/t_param_noval_bad.v:10:7: For loop doesn't have genvar index, or is malformed
                                  : ... note: In instance 't'
   10 |       for (j=0; P; j++)
      |       ^~~
%Error: Internal Error: t/t_param_noval_bad.v:10:7: ../V3Param.cpp:#: GENFOR should have been wrapped in BEGIN
                                                  : ... note: In instance 't'
   10 |       for (j=0; P; j++)
      |       ^~~
                        ... This fatal error may be caused by the earlier error(s); resolve those first.