ph_compute.c
319 Bytes
////C: '-msoft-fp-half'
////C: '-daiteq-fpu-type=daifpu_php_divsqrt'
////A: '--has-fpack --has-fhalf'
typedef half phalf __attribute__((ext_vector_type(2)));
int main(void)
{
volatile phalf a,b;
volatile phalf o;
// {
phalf c;
c = a + b;
o = c * b;
// }
// a = b * b;
// o = o - a;
return 0;
}