1 #if __SIZEOF_INT__ == 4 2 typedef unsigned int V __attribute__((vector_size(8))); 3 typedef V VI; 4 #elif __SIZEOF_LONG__ == 4 5 typedef unsigned long V __attribute__((vector_size(8))); 6 typedef V VI; 7 #else 8 #define UNSUPPORTED 9 #endif 10 11 #define A 0x11121314 12 #define B 0x21222324 13 14 #define X 0xd1d2d3d4 15 #define Y 0xe1e2e3e4 16 17 #include "vshuf-2.inc" 18 #include "vshuf-main.inc" 19