rt_gccstream/gcc/testsuite/gcc.c-torture/compile/20071207-1.c

15 lines
344 B
C

/* PR tree-optimization/34371 */
/* Testcase by Martin Michlmayr <tbm@cyrius.com> */
void centerln (int width, int ch, char *s)
{
unsigned int sidebar;
int i;
char linet1[1000];
char linet2[100];
sidebar = (width - __builtin_strlen (s)) / 2;
for (i = 0; i < sidebar; i++)
linet2[i] = ch;
__builtin_strcpy (linet1, linet2);
}