This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

intrinsics for RCPSP and RSQRSP

Expert 1215 points

Hi,

Are there intrinsics for RCPSP and RSQRSP somewhere? I just want something like this. (Apparently, the following code doesn't compile.)

float FastRSQRCP(float val)
{
 register float out;
 asm("RSQRSP val, out");
 return out;
}

float FastRCP(float val)
{
 register float out;
 asm("RCPSP val, out");
 return out;
}

Thanks