2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / ext / altivec-1.C
blobb7e3af3000996f8c2ee7fdf35d6518118e50bb68
1 // { dg-do compile { target powerpc-*-* } } */
2 /* { dg-options "-maltivec" } */
4 #include <altivec.h>
5  
6 int main()
8   return 0;
11 class F32vec4 {
12 public:
13   vector float val;
14   vector float operator++(void) { return val;}