blob: 49355d00dbb76be69cd5961f3651fc4d38e06e7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
static double foo(double a, int p)
{
return a * ((p & 0) + 2);
}
/*
* check-name: fpcast-constant
* check-command: test-linearize $file
*
* check-output-ignore
* check-output-contains: scvtf\\.
* check-output-excludes: fmul\\..*\\$2
*/
|