aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/c99-align-1.c
blob: 1fb2cb07110af5c2cabddedf4e39edf3f7e57ace (plain)
1
2
3
4
5
6
/* Test _Alignof and _Alignas not in C99.  */
/* { dg-do compile } */
/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */

int a = _Alignof (int); /* { dg-error "ISO C99 does not support '_Alignof'" } */
_Alignas (int) int b; /* { dg-error "ISO C99 does not support '_Alignas'" } */