11.1Smartin/* $NetBSD: s_fma.S,v 1.1 2022/06/23 16:42:50 martin Exp $ */
21.1Smartin
31.1Smartin/* The contents of this file are in the public domain. */
41.1Smartin
51.1Smartin#include <machine/asm.h>
61.1Smartin
71.1Smartin#ifdef WEAK_ALIAS
81.1SmartinWEAK_ALIAS(fmal, fma)
91.1Smartin#endif
101.1Smartin
111.1SmartinENTRY(fma)
121.1Smartin	fmadd	%f1, %f1, %f2, %f3
131.1Smartin	blr
141.1SmartinEND(fma)
15