diff options
Diffstat (limited to 'math/test-tgmath.c')
-rw-r--r-- | math/test-tgmath.c | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/math/test-tgmath.c b/math/test-tgmath.c index 2d8d57ec14..f8f1e5b56e 100644 --- a/math/test-tgmath.c +++ b/math/test-tgmath.c @@ -52,7 +52,7 @@ volatile int count_cdouble; volatile int count_cfloat; volatile int count_cldouble; -#define NCALLS 134 +#define NCALLS 132 #define NCALLS_INT 4 #define NCCALLS 47 @@ -295,8 +295,6 @@ F(compile_test) (void) b = fmaxmag (fmaxmag (a, x), fmaxmag (c, b)); a = fminmag (fminmag (x, a), fminmag (c, b)); b = fma (sin (a), sin (x), sin (c)); - a = totalorder (x, b); - b = totalordermag (x, a); #ifdef TEST_INT a = atan2 (i, b); @@ -400,8 +398,6 @@ F(compile_test) (void) a = fmaxmag (y, y); a = fminmag (y, y); a = fma (y, y, y); - a = totalorder (y, y); - a = totalordermag (y, y); #ifdef TEST_INT a = atan2 (i, y); @@ -959,22 +955,6 @@ TYPE return x + y + z; } -int -(F(totalorder)) (TYPE x, TYPE y) -{ - ++count; - P (); - return x + y; -} - -int -(F(totalordermag)) (TYPE x, TYPE y) -{ - ++count; - P (); - return x + y; -} - complex TYPE (F(cacos)) (complex TYPE x) { |