1/* { dg-do compile } */
2/* { dg-options "-O -mcpu=8540 -mspe -mabi=spe -mfloat-gprs=single" } */
3/* { dg-skip-if "not an SPE target" { ! powerpc_spe_nocache } { "*" } { "" } } */
4/* { dg-final { scan-assembler "evstdd" } } */
5
6void foo(void)
7{
8  int x[8] __attribute__((aligned(64))) = { 1, 1, 1, 1, 1, 1, 1, 1 };
9  bar (x);
10}
11