(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
tree-ssa/
pr90478.c
       1  /* { dg-do compile } */
       2  /* { dg-options "" } */
       3  
       4  typedef struct {
       5    long long a;
       6  } c;
       7  
       8  void e();
       9  
      10  void d() {
      11    c *b;
      12    switch (b->a)
      13    case 8:
      14    case 2:
      15    case 2057594037927936:
      16    case 0:
      17    case 4611686018427387904:
      18      e();
      19  }