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/] [usmul.c] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
int __attribute__ ((noinline)) foo (short x, unsigned short y) { return x * y; } int __attribute__ ((noinline)) bar (unsigned short x, short y) { return x * y; } int main () { if (foo (-2, 0xffff) != -131070) abort (); if (foo (2, 0xffff) != 131070) abort (); if (foo (-32768, 0x8000) != -1073741824) abort (); if (foo (32767, 0x8000) != 1073709056) abort (); if (bar (0xffff, -2) != -131070) abort (); if (bar (0xffff, 2) != 131070) abort (); if (bar (0x8000, -32768) != -1073741824) abort (); if (bar (0x8000, 32767) != 1073709056) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log