bd52d17906
too large to list, but see: http://gcc.gnu.org/gcc-3.4/changes.html http://gcc.gnu.org/gcc-4.0/changes.html http://gcc.gnu.org/gcc-4.1/changes.html for the details.
8 lines
215 B
C
8 lines
215 B
C
#include <altivec.h>
|
|
static vector unsigned int v = {0x01020304,0x05060708,0x21324354,0x65768798};
|
|
static vector unsigned int f() { return vec_splat(v,0); }
|
|
int main() {
|
|
vector unsigned int x = f();
|
|
return 0;
|
|
}
|