ps_ext1.c 253 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 ////C: '-msoft-fp-packedsingle' ////A: '--has-fpack' typedef float ps __attribute__((ext_vector_type(2))); int main(void) { volatile ps o; volatile float oo; // o.x = 1.23456789; // o.y = 34.5678901; // oo = o.x; oo = o.y; return 0; }