view gcc/testsuite/gcc.dg/fpermitted-flt-eval-methods_3.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* { dg-do run } */
/* { dg-options "-std=c11" } */

/* Test that when compiling with -std=c11, we only see the C99/C11 values
   for FLT_EVAL_METHOD.  */

#include <float.h>

int main (int argc, char** argv)
{
  switch (FLT_EVAL_METHOD)
    {
      case 0:
      case 1:
      case 2:
      case -1:
	return 0;
      default:
	return 1;
    }
}