From 58d87ee17185dbd0b8f927c939343eaed34c8614 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 6 May 2004 18:58:29 +0000 Subject: Update. 2004-05-06 Ulrich Drepper * math/tgmath.h (__TGMATH_UNARY_REAL_IMAG_RET_REAL):Define. (cimag): Use it. (creal): Likewise. * math/Makefile (tests): Add bug-tgmath1. * math/bug-tgmath1.c: New file. --- math/bug-tgmath1.c | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 math/bug-tgmath1.c (limited to 'math/bug-tgmath1.c') diff --git a/math/bug-tgmath1.c b/math/bug-tgmath1.c new file mode 100644 index 0000000000..8a457fa252 --- /dev/null +++ b/math/bug-tgmath1.c @@ -0,0 +1,33 @@ +#include +#include + + +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)); + + return retval; +} -- cgit v1.2.3