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