blob: 41ec1889f5fa406bfdce8d160dd71c77cad8591c (
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
|
/* Copyright (C) 2003 Free Software Foundation.
Check that the RTL expansion of floating point exponentiation by
a constant integer doesn't break anything and produces the expected
results.
Written by Roger Sayle, 20th June 2003. */
/* { dg-do run } */
/* { dg-options "-O2 -ffast-math" } */
extern double pow(double,double);
extern void abort(void);
double foo (double x)
{
return pow (x, 6);
}
double bar (double x)
{
return pow (x, -4);
}
int main()
{
if (foo (2.0) != 64.0)
abort ();
if (bar (2.0) != 0.0625)
abort ();
return 0;
}
|