URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [20071207-1.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* 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); }
Go to most recent revision | Compare with Previous | Blame | View Log