summaryrefslogtreecommitdiff
path: root/lib/libm/arch/powerpc/s_fma.S
blob: 5456a2731bae820269e57c474fd99f0b9cc38117 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* $NetBSD: s_fma.S,v 1.1 2022/06/23 16:42:50 martin Exp $ */

/* The contents of this file are in the public domain. */

#include <machine/asm.h>

#ifdef WEAK_ALIAS
WEAK_ALIAS(fmal, fma)
#endif

ENTRY(fma)
	fmadd	%f1, %f1, %f2, %f3
	blr
END(fma)