summaryrefslogtreecommitdiff
path: root/lib/libm/arch/riscv/s_copysign.S
blob: 80966b66c1ccbfa1cffebebc82f802e9628eb1c4 (plain)
1
2
3
4
5
6
7
8
9
10
/* $NetBSD: s_copysign.S,v 1.5 2019/04/13 17:18:26 maya Exp $ */

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

#include <machine/asm.h>

ENTRY(copysign)
	fsgnj.d	fa0, fa0, fa1
	ret
END(copysign)