URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [pr19345.c] - Rev 154
Go to most recent revision | 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); }
Go to most recent revision | Compare with Previous | Blame | View Log