URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [pr35163.c] - Rev 297
Compare with Previous | Blame | View Log
extern void abort(void); int main() { signed char a = -30; signed char b = -31; #if(__SIZEOF_INT__ >= 4) if (a > (unsigned short)b) #else if ((long) a > (unsigned short)b) #endif abort (); return 0; }