repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Dead
[official-gcc.git]
/
gomp-20050608-branch
/
gcc
/
testsuite
/
g++.dg
/
ext
/
altivec-1.C
blob
7e382babf11f26e92329c9ad47dbf8b539f549d2
1
/* { dg-do compile { target powerpc*-*-* } } */
2
/* { dg-xfail-if "" { "powerpc-*-eabispe*" "powerpc-ibm-aix*" } { "*" } { "" } } */
3
/* { dg-options "-maltivec" } */
4
5
#include <altivec.h>
6
7
int main()
8
{
9
return 0;
10
}
11
12
class F32vec4 {
13
public:
14
vector float val;
15
vector float operator++(void) { return val;}
16
};