fma.c\powerpc64\math\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/math/powerpc64/fma.c
blob: 5aebd1ac3f90cea4ddd340fd4aafbfac6d933ce5 (plain) (blame)
1
2
3
4
5
6
7
#include <math.h>
double fma(double x, double y, double z)
{
	__asm__ ("fmadd %0, %1, %2, %3" : "=d"(x) : "d"(x), "d"(y), "d"(z));
	return x;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年10月05日 05:24:02 +0000

AltStyle によって変換されたページ (->オリジナル) /