URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [Wstrict-overflow-19.c] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-fstrict-overflow -O2 -Wstrict-overflow" } */ /* Don't warn about an overflow when threading jumps. We used to get a warning from comparing bounds generated by VRP. */ int bar(int a, int b, int n) { if (b > a) n = a - b; if (a >= b) n = 1; return n; }
Go to most recent revision | Compare with Previous | Blame | View Log