aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/powerpc/altivec-23.c
blob: 3b039f73b0b6bc57c7211f417e56dd1e791ccf42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* Verify that it is possible to define variables of composite types
   containing vector types.  We used to crash handling the
   initializer of automatic ones.  */

/* { dg-do compile } */
/* { dg-require-effective-target powerpc_altivec_ok } */
/* { dg-options "-maltivec -mabi=altivec" } */

#include <altivec.h>

typedef vector int vt;
typedef struct { vt x; int y[sizeof(vt) / sizeof (int)]; } st;
#define INIT { 1, 2, 3, 4 }

void f ()
{
  vt x = INIT;
  vt y[1] = { INIT };
  st s = { INIT, INIT };
}

vt x = INIT;
vt y[1] = { INIT };
st s = { INIT, INIT };