view gcc/testsuite/gcc.dg/torture/float128-extendxf-underflow.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* Test that extension from XFmode to __float128 raises underflow for
   exact tiny values, if trapping on underflow is enabled.  */

/* { dg-do run { target i?86-*-*gnu* x86_64-*-*gnu* ia64-*-*gnu* } } */
/* { dg-options "-D_GNU_SOURCE" } */
/* { dg-require-effective-target fenv_exceptions } */

#include <fenv.h>
#include <setjmp.h>
#include <signal.h>
#include <stdlib.h>

volatile sig_atomic_t caught_sigfpe;
sigjmp_buf buf;

static void
handle_sigfpe (int sig)
{
  caught_sigfpe = 1;
  siglongjmp (buf, 1);
}

int
main (void)
{
  volatile long double a = 0x1p-16384L;
  volatile __float128 r;
  r = a;
  if (fetestexcept (FE_UNDERFLOW))
    abort ();
  if (r != 0x1p-16384q)
    abort ();
  feenableexcept (FE_UNDERFLOW);
  signal (SIGFPE, handle_sigfpe);
  if (sigsetjmp (buf, 1) == 0)
    r = a;
  if (!caught_sigfpe)
    abort ();
  exit (0);
}