xref: /netbsd-src/lib/libm/arch/powerpc/s_fma.S (revision 35a4c156a539ba53e2810526798d0b23d75e8c99)
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