xref: /netbsd-src/lib/libm/arch/powerpc/s_fmaf.S (revision 35a4c156a539ba53e2810526798d0b23d75e8c99)
1*35a4c156Smartin/* $NetBSD: s_fmaf.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*35a4c156SmartinENTRY(fmaf)
8*35a4c156Smartin	fmadds	%f1, %f1, %f2, %f3
9*35a4c156Smartin	blr
10*35a4c156SmartinEND(fmaf)
11