URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [vla-init-5.c] - Rev 313
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test for ICE on incomplete-array-of-VLA compound literal. */ /* Origin: Joseph Myers <jsm@polyomino.org.uk> */ /* { dg-do compile } */ /* { dg-options "" } */ const int i = 1; void foo() { void *p = (char [][i]){ "" }; } /* { dg-error "compound literal has variable size" } */
Go to most recent revision | Compare with Previous | Blame | View Log