(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr60704.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-flive-range-shrinkage" } */
       3  /* { dg-additional-options "-march=amdfam10" { target { i?86-*-* x86_64-*-* } } } */
       4  
       5  struct S
       6  {
       7    int n;
       8  };
       9  
      10  int
      11  foo (struct S s, double a)
      12  {
      13    return s.n * a;
      14  }