2020-06-06 17:55:15 +00:00
|
|
|
%Error: t/t_for_comma_bad.v:14:21: Unsupported: for loop step after the first comma
|
2020-04-04 00:07:46 +00:00
|
|
|
14 | for (; ; a=a+1, b=b+1) ;
|
2020-06-06 17:55:15 +00:00
|
|
|
| ^
|
|
|
|
%Error: t/t_for_comma_bad.v:17:24: Unsupported: for loop step after the first comma
|
2020-04-04 00:07:46 +00:00
|
|
|
17 | for (; a<1; a=a+1, b=b+1) ;
|
2020-06-06 17:55:15 +00:00
|
|
|
| ^
|
|
|
|
%Error: t/t_for_comma_bad.v:20:27: Unsupported: for loop step after the first comma
|
2020-04-04 00:07:46 +00:00
|
|
|
20 | for (a=0; a<1; a=a+1, b=b+1) ;
|
2020-06-06 17:55:15 +00:00
|
|
|
| ^
|
|
|
|
%Error: t/t_for_comma_bad.v:23:35: Unsupported: for loop step after the first comma
|
2020-04-04 00:07:46 +00:00
|
|
|
23 | for (integer a=0; a<1; a=a+1, b=b+1) ;
|
2020-06-06 17:55:15 +00:00
|
|
|
| ^
|
|
|
|
%Error: t/t_for_comma_bad.v:26:39: Unsupported: for loop step after the first comma
|
2020-04-04 00:07:46 +00:00
|
|
|
26 | for (var integer a=0; a<1; a=a+1, b=b+1) ;
|
2020-06-06 17:55:15 +00:00
|
|
|
| ^
|
2020-03-21 15:24:24 +00:00
|
|
|
%Error: t/t_for_comma_bad.v:27:23: Unsupported: for loop initialization after the first comma
|
2020-04-04 00:07:46 +00:00
|
|
|
27 | for (integer a=0, integer b=0; a<1; ) ;
|
|
|
|
| ^
|
2020-03-21 15:24:24 +00:00
|
|
|
%Error: t/t_for_comma_bad.v:28:23: Unsupported: for loop initialization after the first comma
|
2020-04-04 00:07:46 +00:00
|
|
|
28 | for (integer a=0, integer b=0; a<1; a=a+1) ;
|
|
|
|
| ^
|
2020-03-21 15:24:24 +00:00
|
|
|
%Error: t/t_for_comma_bad.v:29:23: Unsupported: for loop initialization after the first comma
|
2020-04-04 00:07:46 +00:00
|
|
|
29 | for (integer a=0, integer b=0; a<1; a=a+1, b=b+1) ;
|
|
|
|
| ^
|
2020-06-06 17:55:15 +00:00
|
|
|
%Error: t/t_for_comma_bad.v:29:48: Unsupported: for loop step after the first comma
|
2020-04-04 00:07:46 +00:00
|
|
|
29 | for (integer a=0, integer b=0; a<1; a=a+1, b=b+1) ;
|
2020-06-06 17:55:15 +00:00
|
|
|
| ^
|
2019-01-23 00:25:00 +00:00
|
|
|
%Error: Exiting due to
|