verilator/test_regress/t/t_func_no_lifetime_bad.out

28 lines
1.8 KiB
Plaintext
Raw Normal View History

2024-10-07 23:14:41 +00:00
%Warning-IMPLICITSTATIC: t/t_func_no_lifetime_bad.v:26:17: Function/task's lifetime implicitly set to static
: ... Suggest use 'function automatic' or 'function static'
2024-10-07 23:14:41 +00:00
26 | function int f_implicit_static();
| ^~~~~~~~~~~~~~~~~
2024-10-07 23:14:41 +00:00
t/t_func_no_lifetime_bad.v:27:11: ... Location of implicit static variable
27 | int cnt = 0;
| ^~~
... Suggest use 'function automatic' or 'function static'
... For warning description see https://verilator.org/warn/IMPLICITSTATIC?v=latest
... Use "/* verilator lint_off IMPLICITSTATIC */" and lint_on around source to disable this message.
2024-10-07 23:14:41 +00:00
%Warning-IMPLICITSTATIC: t/t_func_no_lifetime_bad.v:31:9: Function/task's lifetime implicitly set to static
: ... Suggest use 'function automatic' or 'function static'
2024-10-07 23:14:41 +00:00
31 | task t_implicit_static();
| ^~~~~~~~~~~~~~~~~
2024-10-07 23:14:41 +00:00
t/t_func_no_lifetime_bad.v:32:11: ... Location of implicit static variable
32 | int cnt = 0;
| ^~~
... Suggest use 'function automatic' or 'function static'
%Warning-IMPLICITSTATIC: t/t_func_no_lifetime_bad.v:9:8: Variable's lifetime implicitly set to static
: ... Suggest use 'static' before variable declaration'
9 | int cnt = 0;
| ^~~
%Warning-IMPLICITSTATIC: t/t_func_no_lifetime_bad.v:15:8: Variable's lifetime implicitly set to static
: ... Suggest use 'static' before variable declaration'
15 | int cnt = 0;
| ^~~
%Error: Exiting due to