You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#include <math.h>
|
|
|
|
|
|
float fmaf(float x, float y, float z)
|
|
|
{
|
|
|
__asm__ ("maebr %0, %1, %2" : "+f"(z) : "f"(x), "f"(y));
|
|
|
return z;
|
|
|
}
|
|
|
|