1 /* { dg-options "-O2" } */
2
3 double
4 load_one (double *in)
5 {
6 return in[400] + in[401] + in[527] + in[528];
7 }
8
9 double
10 load_two (double *in)
11 {
12 return in[400] + in[401] + in[464] + in[465];
13 }
14
15 /* This is expected to fail due to PR 82214. */
16 /* { dg-final { scan-assembler-times "stp\td\[0-9\]+, d\[0-9\]+," 4 { xfail *-*-* } } } */