xref: /illumos-gate/usr/src/tools/smatch/src/validation/compound-assign-type.c (revision 332e84f52cdee3d0232bd5ac5306c42177959c96)
1 static unsigned int foo(unsigned int x, long a)
2 {
3 	x /= a;
4 	return x;
5 }
6 
7 /*
8  * check-name: compound-assign-type
9  * check-command: test-linearize -m64 $file
10  * check-output-ignore
11  *
12  * check-output-excludes: divu\\.32
13  * check-output-contains: divs\\.64
14  * check-output-contains: scast\\.32
15  */
16