s_fma.S revision 1.1
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