URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [va-arg-pack-2.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O2" } */ extern void noreturn (int status, ...); extern inline __attribute ((always_inline)) void error (int status, ...) { if (__builtin_constant_p (status)) noreturn (status, __builtin_va_arg_pack ()); } void f (void) { error (1); }
Go to most recent revision | Compare with Previous | Blame | View Log