blob: 5d02ed5c0e7834d8d65026fba89a3e9a28011faf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* $Id: fsqrtd.c,v 1.4 1999/05/28 13:44:39 jj Exp $
* arch/sparc64/math-emu/fsqrtd.c
*
* Copyright (C) 1997, 1999 Jakub Jelinek (jj@ultra.linux.cz)
* Copyright (C) 1999 David S. Miller (davem@redhat.com)
*
*/
#include "sfp-util.h"
#include "soft-fp.h"
#include "double.h"
int FSQRTD(void *rd, void *rs2)
{
FP_DECL_EX;
FP_DECL_D(A); FP_DECL_D(R);
FP_UNPACK_DP(A, rs2);
FP_SQRT_D(R, A);
FP_PACK_DP(rd, R);
FP_HANDLE_EXCEPTIONS;
}
|