URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [pr20922-3.c] - Rev 298
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-ffast-math -fno-wrapv -fstrict-overflow -fdump-tree-gimple" } */ int f(int i) { return (i - 2) <= i; } int g(int i) { return (i + 2) >= i; } int h(int i) { return (i + (-2)) <= i; } int x(double i) { return (i - 2.0) <= i; } int y(double i) { return (i + 2.0) >= i; } int z(double i) { return (i + (-2.0)) <= i; } /* { dg-final { scan-tree-dump-times " = 1" 6 "gimple" } } */ /* { dg-final { cleanup-tree-dump "gimple" } } */
Go to most recent revision | Compare with Previous | Blame | View Log