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/] [pr19345.c] - Rev 298
Compare with Previous | Blame | View Log
/* We shouldn't crash trying to produce the inlined structure type die debug info. */ /* { dg-do compile } */ /* { dg-options "-O1 -g" } */ inline void bar(char a[], unsigned int l) { asm volatile ("" :: "m" ( *(struct {char x[l]; } *)a)); } void foo(void) { bar (0, 0); }