Commit 8bd32653 by Jakub Jelinek Committed by Jakub Jelinek

re PR c/89521 (ICE in expand_builtin_int_roundingfn, at builtins.c:2697)

	PR c/89521
	* gcc.dg/pr89521-1.c: New test.
	* gcc.dg/pr89521-2.c: New test.

From-SVN: r269280
parent 32679718
2019-02-28 Jakub Jelinek <jakub@redhat.com>
PR c/89521
* gcc.dg/pr89521-1.c: New test.
* gcc.dg/pr89521-2.c: New test.
2019-02-28 John David Anglin <danglin@gcc.gnu.org> 2019-02-28 John David Anglin <danglin@gcc.gnu.org>
PR testsuite/89441 PR testsuite/89441
......
/* PR c/89521 */
/* { dg-do compile } */
/* { dg-options "-Ofast -w" } */
#define A(name) __typeof (__builtin_##name (0)) name (); long name##1 () { return name (1); }
#define B(name) A(name) A(name##f) A(name##l)
B (ceil)
B (floor)
B (round)
B (trunc)
B (nearbyint)
B (rint)
B (logb)
/* PR c/89521 */
/* { dg-do compile } */
/* { dg-options "-Ofast -w" } */
#define A(name) __typeof (__builtin_##name (0)) name (); \
float name##1 () { return name (1); } \
double name##2 () { return name (1); }
#define B(name) A(name) A(name##l)
B (cosh)
B (exp)
B (exp10)
B (exp2)
B (expm1)
B (gamma)
B (j0)
B (j1)
B (lgamma)
B (pow10)
B (sinh)
B (tgamma)
B (y0)
B (y1)
B (acos)
B (acosh)
B (asin)
B (asinh)
B (atan)
B (atanh)
B (cbrt)
B (cos)
B (erf)
B (erfc)
B (log)
B (log10)
B (log2)
B (log1p)
B (sin)
B (tan)
B (tanh)
B (sqrt)
B (fabs)
B (logb)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment