1/* { dg-do compile { target powerpc*-*-* } } */
2/* { dg-require-effective-target powerpc_altivec_ok } */
3/* { dg-options "-O -maltivec" } */
4/* { dg-final { scan-assembler "stvx" } } */
5
6#include <string.h>
7
8void foo(void)
9{
10  int x[8] __attribute__((aligned(128)));
11  memset (x, 0, sizeof (x));
12  bar (x);
13}
14