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.2.2/] [gcc/] [testsuite/] [gcc.dg/] [pr20922-1.c] - Rev 149
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-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 j(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 " = 0" 7 "gimple" } } */ /* { dg-final { cleanup-tree-dump "gimple" } } */
Go to most recent revision | Compare with Previous | Blame | View Log