xref: /illumos-gate/usr/src/tools/smatch/src/validation/infinite-loop02.c (revision 5801b0f01c3c34499a929ed96164a5a68b470945)
1 void foo(void)
2 {
3 	int a = 1;
4 	while ((a = !a))
5 		;
6 }
7 
8 /*
9  * check-name: infinite loop 02
10  * check-command: sparse -Wno-decl $file
11  * check-timeout:
12  */
13