URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [pr49958.c] - Rev 754
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run } */ /* { dg-options "-fstrict-overflow" } */ extern void abort (void); int foo (int i, int j, int o, int m) { return i*o + 1 + j*m > 1; } int main() { if (foo (- __INT_MAX__ - 1, -1, 1, 1)) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log