]> git.ipfire.org Git - thirdparty/gcc.git/blame - libdecnumber/bid/host-ieee64.c
Update copyright years.
[thirdparty/gcc.git] / libdecnumber / bid / host-ieee64.c
CommitLineData
10de71e1 1/* This is a software decimal floating point library.
f1717362 2 Copyright (C) 2007-2016 Free Software Foundation, Inc.
10de71e1 3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify it under
7the terms of the GNU General Public License as published by the Free
6bc9506f 8Software Foundation; either version 3, or (at your option) any later
10de71e1 9version.
10
10de71e1 11GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12WARRANTY; without even the implied warranty of MERCHANTABILITY or
13FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14for more details.
15
6bc9506f 16Under Section 7 of GPL version 3, you are granted additional
17permissions described in the GCC Runtime Library Exception, version
183.1, as published by the Free Software Foundation.
19
20You should have received a copy of the GNU General Public License and
21a copy of the GCC Runtime Library Exception along with this program;
22see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23<http://www.gnu.org/licenses/>. */
10de71e1 24
25/* This implements IEEE 754R decimal floating point arithmetic, but
26 does not provide a mechanism for setting the rounding mode, or for
27 generating or handling exceptions. Conversions between decimal
28 floating point types and other types depend on C library functions.
29
30 Contributed by Ben Elliston <bje@au.ibm.com>. */
31
32/* The intended way to use this file is to make two copies, add `#define '
33 to one copy, then compile both copies and add them to libgcc.a. */
34
10de71e1 35#include <string.h>
10de71e1 36#include "bid-dpd.h"
37#include "decimal64.h"
38
10de71e1 39void __host_to_ieee_64 (_Decimal64 in, decimal64 *out);
40void __ieee_to_host_64 (decimal64 in, _Decimal64 *out);
41
10de71e1 42void
43__host_to_ieee_64 (_Decimal64 in, decimal64 *out)
44{
c8ac5d9a 45 memcpy ((char *) out, (char *) &in, 8);
10de71e1 46}
47
48void
49__ieee_to_host_64 (decimal64 in, _Decimal64 *out)
50{
c8ac5d9a 51 memcpy ((char *) out, (char *) &in, 8);
10de71e1 52}