Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / c11-enum-3.c
blob8cebd3383d1f796af6ff7436befc9db0e8f98671
1 /* Test C23 enumerations with values not representable in int are not diagnosed
2 for C11 with -pedantic-errors -Wno-c11-c23-compat. */
3 /* { dg-do compile } */
4 /* { dg-options "-std=c11 -pedantic-errors -Wno-c11-c23-compat" } */
6 enum e1 { e1a = -__LONG_LONG_MAX__ - 1 };
8 enum e2 { e2a = __LONG_LONG_MAX__ };
10 enum e3 { e3a = (unsigned int) -1 };
12 enum e4 { e4a = (long long) -__INT_MAX__ - 1, e4b = (unsigned int) __INT_MAX__ };
14 enum e5 { e5a = __INT_MAX__, e5b };