URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [lto/] [const-uniq_1.c] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
extern int lookup1 (int i); extern int lookup2 (int i); extern void abort (void); int lookup3 (int i) { int a[] = { 0, 1, 2, 3, 4, 5, 6, 7 }; return a[i+2]; } int main (void) { if (lookup1(2) != 2) abort (); if (lookup2(2) != 3) abort (); if (lookup3(2) != 4) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log