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/] [20001108-1.c] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
long long signed_poly (long long sum, long x) { sum += (long long) (long) sum * (long long) x; return sum; } unsigned long long unsigned_poly (unsigned long long sum, unsigned long x) { sum += (unsigned long long) (unsigned long) sum * (unsigned long long) x; return sum; } int main (void) { if (signed_poly (2LL, -3) != -4LL) abort (); if (unsigned_poly (2ULL, 3) != 8ULL) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log