URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [m68k/] [20090709-1.c] - Rev 826
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* There should be 3 occurrences of .LC0 in the code: one for the definition of "0", one for use in test1() and one for use in test2(). FIXME: At the moment m68k GCC does not optimize test1() to nop for some reason. */ /* { dg-final { scan-assembler-times ".LC0" 3 } } */ void dummy(char *arg); void test1(void) { char tmp[2] = "0"; } void test2(void) { dummy("0"); }