OSDN Git Service

PR middle-end/19984
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / dfp / keywords-ignored-c99.c
1 /* { dg-do compile } */
2 /* { dg-options "-std=c99" } */
3
4 /* Decimal float keywords are not reserved for c99.  */
5
6 int _Decimal32 (void)
7 {
8   return 0;
9 }
10
11 int foo (int i)
12 {
13   int _Decimal64 = i * 2;
14   return _Decimal64;
15 }