blob: 7700bb34a07047fddfdb3842f66f2551165feefb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* PR tree-optimization/110852 */
/* { dg-options "-O1 -fno-tree-fre" } */
unsigned i, j;
unsigned
foo (void)
{
unsigned u = __builtin_expect (i, 0);
return 4 - (u < (j || i));
}
|