summaryrefslogtreecommitdiffstats
path: root/arch/sparc/math-emu/fstoq.c
blob: e2257c214a4fb52051d2927e37c1699e7c8b32f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* $Id: fstoq.c,v 1.9 1999/05/28 13:42:16 jj Exp $
 * arch/sparc/math-emu/fstoq.c
 *
 * Copyright (C) 1997, 1999 Jakub Jelinek (jj@ultra.linux.cz)
 * Copyright (C) 1998 Peter Maydell (pmaydell@chiark.greenend.org.uk)
 *
 */

#include "sfp-util.h"
#include "soft-fp.h"
#include "quad.h"
#include "single.h"

int FSTOQ(void *rd, void *rs2)
{
	FP_DECL_EX;
	FP_DECL_S(A); FP_DECL_Q(R);

	FP_UNPACK_SP(A, rs2);
	FP_CONV(Q,S,4,1,R,A);
	FP_PACK_QP(rd, R);
	FP_HANDLE_EXCEPTIONS;
}