URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [debug/] [pr45849.c] - Rev 708
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR debug/45849 */ /* { dg-do compile } */ /* { dg-options "-g -Wno-uninitialized" } */ extern void bar (void); void foo (long repllen, char *rp) { char *matchend; char *scan; long len; char *matchstart; char *text; char *t; repllen--; for (;;) { matchstart = t + rp[0]; matchend = rp; len = matchstart - text + repllen * (matchend - matchstart); while (len) ; for (scan = text; scan != rp; scan++) bar (); if (matchstart) text = matchend; } }
Go to most recent revision | Compare with Previous | Blame | View Log