builtin-has-attribute-4.c: Skip on 32-bit hppa*-*-hpux*.
[official-gcc.git] / gcc / testsuite / gcc.dg / dfp / keywords-reserved.c
blob1117ae8d937dcc0242a1829becd6d960c7267420
1 /* { dg-do compile } */
3 /* N1150 3: Decimal floating types.
4 C99 6.4.1(2): Keywords.
5 Decimal float keywords cannot be used in other contexts. */
7 int _Decimal32 (void) /* { dg-error "" } */
9 return 0;
12 int foo (int i)
14 int _Decimal64 = i * 2; /* { dg-error "" } */
15 return _Decimal64; /* { dg-error "" } */