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.target/] [s390/] [20041216-1.c] - Rev 325
Go to most recent revision | Compare with Previous | Blame | View Log
/* This test case would get an unresolved symbol during link because stabs referred to an optimized-away literal pool entry. */ /* { dg-do run } */ /* { dg-options "-O2 -fno-omit-frame-pointer -gstabs" } */ int main (void) { static char buf[4096]; char *p; do { p = buf; asm volatile ("" : : : "memory", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "12"); } while (*p); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log