xref: /illumos-gate/usr/src/tools/smatch/src/validation/linear/fp-vs-ptrcast.c (revision 20a7641f9918de8574b8b3b47dbe35c4bfc78df1)
1 float *f01(void* p)
2 {
3 	return p;
4 }
5 
6 /*
7  * check-name: fp-vs-ptrcast
8  * check-command: test-linearize -Wno-decl $file
9  * check-output-ignore
10  *
11  * check-output-excludes: fpcast
12  * check-output-contains: ptrcast
13  */
14