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/] [960830-1.c] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
#ifdef __i386__ f (rp) unsigned int *rp; { __asm__ ("mull %3" : "=a" (rp[0]), "=d" (rp[1]) : "%0" (7), "rm" (7)); } main () { unsigned int s[2]; f (s); if (s[1] != 0 || s[0] != 49) abort (); exit (0); } #else main () { exit (0); } #endif
Go to most recent revision | Compare with Previous | Blame | View Log