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/] [981001-1.c] - Rev 308
Go to most recent revision | Compare with Previous | Blame | View Log
#define NG 0x100L unsigned long flg = 0; long sub (int n) { int a, b ; if (n >= 2) { if (n % 2 == 0) { a = sub (n / 2); return (a + 2 * sub (n / 2 - 1)) * a; } else { a = sub (n / 2 + 1); b = sub (n / 2); return a * a + b * b; } } else return (long) n; } int main (void) { if (sub (30) != 832040L) flg |= NG; if (flg) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log