URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [961213-1.c] - Rev 297
Go to most recent revision | Compare with Previous | Blame | View Log
int g (unsigned long long int *v, int n, unsigned int a[], int b) { int cnt; *v = 0; for (cnt = 0; cnt < n; ++cnt) *v = *v * b + a[cnt]; return n; } main () { int res; unsigned int ar[] = { 10, 11, 12, 13, 14 }; unsigned long long int v; res = g (&v, sizeof(ar)/sizeof(ar[0]), ar, 16); if (v != 0xabcdeUL) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log