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