Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / gcc.dg / c99-align-1.c
blob1fb2cb07110af5c2cabddedf4e39edf3f7e57ace
1 /* Test _Alignof and _Alignas not in C99. */
2 /* { dg-do compile } */
3 /* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
5 int a = _Alignof (int); /* { dg-error "ISO C99 does not support '_Alignof'" } */
6 _Alignas (int) int b; /* { dg-error "ISO C99 does not support '_Alignas'" } */