aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr71994.c
blob: 8f5e92ceeee8419800d7b62275ac6199b2975e37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* PR tree-optimization/71994 */
/* { dg-do compile } */
int om, h6;

void eo (void)
{
  const int tl = 1;
  int ln;

  h6 = (om + tl) > 0;
  ln = om && (om & h6);
  h6 = om;
  om = ln < h6;
}