1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
4 extern void noreturn (int status
, ...);
6 extern inline __attribute ((always_inline
)) void
7 error (int status
, ...)
9 if (__builtin_constant_p (status
))
10 noreturn (status
, __builtin_va_arg_pack ());