aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/analyzer/pr96699.c
blob: c68e45a9401696e3bc8f8986a367bb893c07623e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
struct qi {
  union {
    int hj;
    float sl;
  };
};

void
i2 (struct qi *la)
{
  if (la->hj == 0)
    la->sl = 0.0f;
}