s_copysign.S revision 1.3
1/* $NetBSD: s_copysign.S,v 1.3 2014/11/15 21:07:01 joerg Exp $ */
2
3/* The contents of this file are in the public domain. */
4
5#include <machine/asm.h>
6
7STRONG_ALIAS(_copysignl, copysign)
8WEAK_ALIAS(copysignl, _copysignl)
9
10ENTRY(copysign)
11	fsgnj.d	fv0, fa0, fa1
12	ret
13END(copysign)
14