xref: /illumos-gate/usr/src/tools/smatch/src/validation/backend/loop2.c (revision f52943a93040563107b95bccb9db87d9971ef47d)
1 extern int op(void);
2 
3 static void test(void)
4 {
5 	int i;
6 	for (i = 0; ; i++) {
7 		op();
8 	}
9 }
10 
11 /*
12  * check-name: Loops with unused counter
13  * check-command: sparsec -c $file -o tmp.o
14  */
15