aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/ext/altivec-16.C
blob: 91230d26138b35ab16e53bf49035199002e90612 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// PR c++/36662
// { dg-do compile { target powerpc*-*-* } }
// { dg-require-effective-target powerpc_altivec_ok }
// { dg-options "-maltivec" }

#define vector __attribute__((altivec (vector__)))

template <typename c> struct S {};

template <> struct S<vector float>
{
  static vector float zero;
};

template <int>
void g (void)
{
  vector float t = S<vector float>::zero;
}