blob: cfa8a29ef7ee8d55e8304b9dd4c8a0ccd1cbe94b [file] [log] [blame]
/* { 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" } } */