Does the Eclipse CDT C ++ editor have any support for Altivec C ++ language extensions implemented, for example, in GNU g ++ compilers when compiled with -maltivec?
In particular, is it possible to stop the publication of vector data types as syntax errors? eg.
vector unsigned char foo;
declares a 128-bit vector variable named "foo" containing sixteen 8-bit unsigned characters.
source
share