URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [20071203-1.c] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
/* Testcase by Martin Michlmayr <tbm@cyrius.com> */ struct User { char username[10]; }; void auth_set_username (struct User *user) { char *d; char ch; d = user->username + (user->username[0] == '~'); while ((ch = *d++) != '\0') /* do nothing */ ; }
Go to most recent revision | Compare with Previous | Blame | View Log