(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
s390/
pr89952.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-march=zEC12 -fno-omit-frame-pointer -Os" } */
       3  
       4  
       5  extern void j(int);
       6  
       7  void
       8  d(int e, long f, int g, int h, int i) {
       9    if (h == 5 && i >= 4 && i <= 7)
      10      h = e;
      11    j(h);
      12  }