1*0a6a1f1dSLionel Sambuc/* $NetBSD: s_copysignf.S,v 1.2 2015/03/27 23:35:40 matt Exp $ */ 2*0a6a1f1dSLionel Sambuc 3*0a6a1f1dSLionel Sambuc/* The contents of this file are in the public domain. */ 4*0a6a1f1dSLionel Sambuc 5*0a6a1f1dSLionel Sambuc#include <machine/asm.h> 6*0a6a1f1dSLionel Sambuc 7*0a6a1f1dSLionel SambucENTRY(copysignf) 8*0a6a1f1dSLionel Sambuc fsgnj.s fa0, fa0, fa1 9*0a6a1f1dSLionel Sambuc ret 10*0a6a1f1dSLionel SambucEND(copysignf) 11