blob: 8eb9a4211a8649106f53a5626300848664e1e996 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/* Verify whether math functions are simplified. */
double sin(double);
double floor(double);
float
t(float a)
{
return sin(a);
}
float
q(float a)
{
return floor(a);
}
double
q1(float a)
{
return floor(a);
}
main()
{
#ifdef __OPTIMIZE__
if (t(0)!=0)
abort ();
if (q(0)!=0)
abort ();
if (q1(0)!=0)
abort ();
#endif
return 0;
}
__attribute__ ((noinline))
double
floor(double a)
{
abort ();
}
__attribute__ ((noinline))
float
floorf(float a)
{
return a;
}
__attribute__ ((noinline))
double
sin(double a)
{
abort ();
}
__attribute__ ((noinline))
float
sinf(float a)
{
return a;
}
|