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
foo(struct S s,double a)11 foo (struct S s, double a)
12 {
13   return s.n * a;
14 }
15