Merge from mainline
[official-gcc.git] / gcc / testsuite / gcc.dg / dfp / keywords-ignored-c99.c
bloba4258aaa8ae655745b90568d80531b9c948b4cc1
1 /* { dg-do compile } */
2 /* { dg-options "-std=c99" } */
4 /* Decimal float keywords are not reserved for c99. */
6 int _Decimal32 (void)
8 return 0;
11 int foo (int i)
13 int _Decimal64 = i * 2;
14 return _Decimal64;