aboutsummaryrefslogtreecommitdiff
path: root/math/bug-tgmath1.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/bug-tgmath1.c')
-rw-r--r--math/bug-tgmath1.c47
1 files changed, 0 insertions, 47 deletions
diff --git a/math/bug-tgmath1.c b/math/bug-tgmath1.c
deleted file mode 100644
index 16db9d17a1..0000000000
--- a/math/bug-tgmath1.c
+++ /dev/null
@@ -1,47 +0,0 @@
-#include <stdio.h>
-#include <tgmath.h>
-
-
-int
-main (void)
-{
- int retval = 0;
-
-#define TEST(expr, res) \
- if (sizeof (expr) != res) \
- { \
- printf ("sizeof(%s) == %zu, expected %zu\n", #expr, \
- sizeof (expr), (size_t) (res)); \
- retval = 1; \
- }
-
- TEST (creal (1.0), sizeof (double));
- TEST (creal (1.0 + 1.0i), sizeof (double));
- TEST (creal (1.0l), sizeof (long double));
- TEST (creal (1.0l + 1.0li), sizeof (long double));
- TEST (creal (1.0f), sizeof (float));
- TEST (creal (1.0f + 1.0fi), sizeof (float));
-
- TEST (cimag (1.0), sizeof (double));
- TEST (cimag (1.0 + 1.0i), sizeof (double));
- TEST (cimag (1.0l), sizeof (long double));
- TEST (cimag (1.0l + 1.0li), sizeof (long double));
- TEST (cimag (1.0f), sizeof (float));
- TEST (cimag (1.0f + 1.0fi), sizeof (float));
-
- TEST (fabs (1.0), sizeof (double));
- TEST (fabs (1.0 + 1.0i), sizeof (double));
- TEST (fabs (1.0l), sizeof (long double));
- TEST (fabs (1.0l + 1.0li), sizeof (long double));
- TEST (fabs (1.0f), sizeof (float));
- TEST (fabs (1.0f + 1.0fi), sizeof (float));
-
- TEST (carg (1.0), sizeof (double));
- TEST (carg (1.0 + 1.0i), sizeof (double));
- TEST (carg (1.0l), sizeof (long double));
- TEST (carg (1.0l + 1.0li), sizeof (long double));
- TEST (carg (1.0f), sizeof (float));
- TEST (carg (1.0f + 1.0fi), sizeof (float));
-
- return retval;
-}