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.dg/] [torture/] [pr43000.c] - Rev 378
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run } */ /* { dg-options "-fwrapv" } */ int __attribute__((noinline)) foo (long i, long j) { if (i >= 1) if (j > -(long)(((unsigned long)(long)-1)>>1)) { long x; j--; x = i + j; if (x >= 0) return 1; } return 0; } extern void abort (void); int main() { if (foo (1, 1) != 1) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log