blob: a3bd0fd001dc7c92cf220b506f14e5d6de968947 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* { dg-do compile { target powerpc*-*-* } } */
/* { dg-require-effective-target powerpc_altivec_ok } */
/* { dg-options "-maltivec -O2 -Wall" } */
#define vector __attribute__((__vector_size__(16) ))
vector int f()
{
int t = 4;
return (vector int){t,t,t,t};
}
vector int f1()
{
return (vector int){4,4,4,4};
}
/* We should be able to materialize the constant vector without
any lvewx instructions as it is constant. */
/* { dg-final { scan-assembler-not "lvewx" } } */
|