blob: b6b9e000124b07dc7475f03cf172e55e65589672 (
plain)
1
2
3
4
5
6
7
8
9
|
/* { dg-do compile { target powerpc*-*-* } } */
/* { dg-options "-O -maltivec" } */
/* { dg-final { scan-assembler "lvx" } } */
void foo(void)
{
int x[8] __attribute__((aligned(128))) = { 1 };
bar (x);
}
|