1*35a4c156Smartin/* $NetBSD: s_fma.S,v 1.1 2022/06/23 16:42:50 martin Exp $ */ 2*35a4c156Smartin 3*35a4c156Smartin/* The contents of this file are in the public domain. */ 4*35a4c156Smartin 5*35a4c156Smartin#include <machine/asm.h> 6*35a4c156Smartin 7*35a4c156Smartin#ifdef WEAK_ALIAS 8*35a4c156SmartinWEAK_ALIAS(fmal, fma) 9*35a4c156Smartin#endif 10*35a4c156Smartin 11*35a4c156SmartinENTRY(fma) 12*35a4c156Smartin fmadd %f1, %f1, %f2, %f3 13*35a4c156Smartin blr 14*35a4c156SmartinEND(fma) 15