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/] [pr25125.c] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
extern void exit (int); extern void abort (void); extern unsigned short f (short a) __attribute__((__noinline__)); unsigned short f (short a) { short b; if (a > 0) return 0; b = ((int) a) + - (int) 32768; return b; } int main (void) { if (sizeof (short) < 2 || sizeof (short) >= sizeof (int)) exit (0); if (f (-32767) != 1) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log