/* PR tree-optimization/34371 */ /* Testcase by Martin Michlmayr */ 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); }