ps_ext-cmp.c
280 Bytes
////C: '-msoft-fp-packedsingle'
////A: '--has-fpack'
typedef float ps __attribute__((ext_vector_type(2)));
int main(void)
{
volatile ps a,b;
// volatile float oo;
// o.x = 1.23456789;
// o.y = 34.5678901;
if (a.x==b.x && a.y==b.y)
return 1;
else
return 0;
}