2 extern void abort (void);
5 __attribute__((noinline)) double
6 real_pow (double x, double pow_exp)
8 return __builtin_pow (x, pow_exp);
11 #define EPS (0.000000000000000000001)
13 #define SYNTH_POW(X, Y) __builtin_pow (X, Y)
21 for (arg = i_arg; arg < 100.0; arg += 1.0)
23 double synth_res = SYNTH_POW (arg, EXPN);
24 double real_res = real_pow (arg, EXPN);
26 if (__builtin_abs (SYNTH_POW (arg, EXPN) - real_pow (arg, EXPN)) > EPS)