1 /* Test compilation of tgmath macros.
2 Copyright (C) 2005 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Andreas Jaeger <aj@suse.de>, 2005.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26 static int errors
= 0;
29 our_error (const char *c
)
35 #define CHECK_RET_CONST_TYPE(func, rettype, name) \
36 if (sizeof (func) != sizeof (rettype)) \
37 our_error ("Return size of " #name " is " #func" wrong");
39 #define CHECK_RET_CONST_FLOAT(func, name) \
40 CHECK_RET_CONST_TYPE (func, float, name)
42 #define CHECK_RET_CONST_DOUBLE(func, name) \
43 CHECK_RET_CONST_TYPE (func, double, name)
52 CHECK_RET_CONST_DOUBLE (sin (i
), "sin (i)");
53 CHECK_RET_CONST_DOUBLE (pow (i
, i
), "pow (i, i)");
54 CHECK_RET_CONST_DOUBLE (pow (i
, i
), "pow (i, i)");
55 CHECK_RET_CONST_DOUBLE (pow (i
, f
), "pow (i, f)");
56 CHECK_RET_CONST_DOUBLE (pow (i
, d
), "pow (i, d)");
57 CHECK_RET_CONST_DOUBLE (pow (f
, i
), "pow (f, i)");
58 CHECK_RET_CONST_DOUBLE (pow (d
, i
), "pow (d, i)");
59 CHECK_RET_CONST_DOUBLE (fma (i
, i
, i
), "fma (i, i, i)");
60 CHECK_RET_CONST_DOUBLE (fma (f
, i
, i
), "fma (f, i, i)");
61 CHECK_RET_CONST_DOUBLE (fma (i
, f
, i
), "fma (i, f, i)");
62 CHECK_RET_CONST_DOUBLE (fma (i
, i
, f
), "fma (i, i, f)");
63 CHECK_RET_CONST_DOUBLE (fma (d
, i
, i
), "fma (d, i, i)");
64 CHECK_RET_CONST_DOUBLE (fma (i
, d
, i
), "fma (i, d, i)");
65 CHECK_RET_CONST_DOUBLE (fma (i
, i
, d
), "fma (i, i, d)");
70 #define TEST_FUNCTION do_test ()
71 #include "../test-skeleton.c"