xref: /netbsd-src/lib/libm/arch/powerpc/s_fma.S (revision 0a3071956a3a9fdebdbf7f338cf2d439b45fc728)
1/* $NetBSD: s_fma.S,v 1.1 2022/06/23 16:42:50 martin Exp $ */
2
3/* The contents of this file are in the public domain. */
4
5#include <machine/asm.h>
6
7#ifdef WEAK_ALIAS
8WEAK_ALIAS(fmal, fma)
9#endif
10
11ENTRY(fma)
12	fmadd	%f1, %f1, %f2, %f3
13	blr
14END(fma)
15