PR tree-optimization/67955
[official-gcc.git] / gcc / testsuite / g++.dg / ext / spe1.C
blob8b1e630ecc03734cf0fc27f2de71db04bd25d5c2
1 /* { dg-do compile } */
2 /* { dg-options "-mcpu=8540 -mspe -mabi=spe -mfloat-gprs=single -O0" } */
3 /* { dg-skip-if "not an SPE target" { ! powerpc_spe_nocache } { "*" } { "" } } */
5 typedef int v2si __attribute__ ((vector_size (8)));
7 /* The two specializations must be considered different.  */
8 template <class T> class X                  { };
9 template <>        class X<__ev64_opaque__> { };
10 template <>        class X<v2si>            { };