(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
analyzer/
pr96699.c
       1  struct qi {
       2    union {
       3      int hj;
       4      float sl;
       5    };
       6  };
       7  
       8  void
       9  i2 (struct qi *la)
      10  {
      11    if (la->hj == 0)
      12      la->sl = 0.0f;
      13  }