PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / fpermitted-flt-eval-methods_3.c
blobc7bd7567ca4753c3e6b57d396dd2f7152c538076
1 /* { dg-do run } */
2 /* { dg-options "-std=c11" } */
4 /* Test that when compiling with -std=c11, we only see the C99/C11 values
5 for FLT_EVAL_METHOD. */
7 #include <float.h>
9 int main (int argc, char** argv)
11 switch (FLT_EVAL_METHOD)
13 case 0:
14 case 1:
15 case 2:
16 case -1:
17 return 0;
18 default:
19 return 1;