ldso: correct condition for local symbol handling in do_relocs
[musl.git] / src / math / arm / fmaf.c
bloba1793d27f1ff51f7968cdbbb036345d1875de30a
1 #include <math.h>
3 #if __ARM_FEATURE_FMA && __ARM_FP&4 && !__SOFTFP__ && !BROKEN_VFP_ASM
5 float fmaf(float x, float y, float z)
7 __asm__ ("vfma.f32 %0, %1, %2" : "+t"(z) : "t"(x), "t"(y));
8 return z;
11 #else
13 #include "../fmaf.c"
15 #endif