blob: 5de30844c2f01870492e0279b94e263753001116 [file] [log] [blame]
/* PR tree-optimization/85529 */
__attribute__((noipa)) int
foo (int x)
{
x &= 63;
x -= 50;
x |= 1;
if (x < 0)
return 1;
int y = x >> 2;
if (x >= y)
return 1;
return 0;
}
int
main ()
{
int i;
for (i = 0; i < 63; i++)
if (foo (i) != 1)
__builtin_abort ();
return 0;
}