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