URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [vla-14.c] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test for VLA size evaluation in va_arg. */ /* Origin: Joseph Myers <joseph@codesourcery.com> */ /* { dg-do run } */ /* { dg-options "-std=gnu99" } */ #include <stdarg.h> extern void exit (int); extern void abort (void); int a[10]; int i = 9; void f (int n, ...) { va_list ap; void *p; va_start (ap, n); p = va_arg (ap, typeof (int (*)[++i])); if (p != a) abort (); if (i != n) abort (); va_end (ap); } int main (void) { f (10, &a); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log