blob: 175a756eca7f3448e2a173feb7db489431884349 [file] [log] [blame]
/* { dg-do compile { target powerpc*-*-* } } */
/* { dg-require-effective-target powerpc_altivec_ok } */
/* { dg-options "-O -maltivec -mno-vsx" } */
/* { dg-final { scan-assembler "stvx" } } */
#include <string.h>
void bar (int *);
void foo(void)
{
int x[8] __attribute__((aligned(128)));
memset (x, 0, sizeof (x));
bar (x);
}