URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20070212-2.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
int f(int k, int i1, int j1) { int *f1; if(k) f1 = &i1; else f1 = &j1; i1 = 0; return *f1; } extern void abort (void); int main() { if (f(1, 1, 2) != 0) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log