blob: 817aee5c909ffc56ab895bf4af93aac7054373a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
float *f01(void* p)
{
return p;
}
/*
* check-name: fp-vs-ptrcast
* check-command: test-linearize -Wno-decl $file
* check-output-ignore
*
* check-output-excludes: fpcast
* check-output-contains: ptrcast
*/
|