URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [p18298.c] - Rev 318
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdbool.h> #include <stdlib.h> int strcmp (const char*, const char*); char s[2048] = "a"; inline bool foo(const char *str) { return !strcmp(s,str); } int main() { int i = 0; while(!(foo(""))) { i ++; s[0] = '\0'; if (i>2) abort (); } return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log