]> git.ipfire.org Git - thirdparty/glibc.git/blame - soft-fp/fmatf4.c
soft-fp: Fix comment formatting.
[thirdparty/glibc.git] / soft-fp / fmatf4.c
CommitLineData
77f01ab5 1/* Implement fmal using soft-fp.
d4697bc9 2 Copyright (C) 2013-2014 Free Software Foundation, Inc.
77f01ab5
JM
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 In addition to the permissions in the GNU Lesser General Public
11 License, the Free Software Foundation gives you unlimited
12 permission to link the compiled version of this file into
13 combinations with other programs, and to distribute those
14 combinations without any restriction coming from the use of this
15 file. (The Lesser General Public License restrictions do apply in
16 other respects; for example, they cover modification of the file,
17 and distribution when not linked into a combine executable.)
18
19 The GNU C Library is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 Lesser General Public License for more details.
23
24 You should have received a copy of the GNU Lesser General Public
25 License along with the GNU C Library; if not, see
26 <http://www.gnu.org/licenses/>. */
27
28#include <math.h>
29#include "soft-fp.h"
30#include "quad.h"
31
32long double
33__fmal (long double a, long double b, long double c)
34{
35 FP_DECL_EX;
51ca9e29
JM
36 FP_DECL_Q (A);
37 FP_DECL_Q (B);
38 FP_DECL_Q (C);
39 FP_DECL_Q (R);
77f01ab5
JM
40 long double r;
41
42 FP_INIT_ROUNDMODE;
51ca9e29
JM
43 FP_UNPACK_Q (A, a);
44 FP_UNPACK_Q (B, b);
45 FP_UNPACK_Q (C, c);
46 FP_FMA_Q (R, A, B, C);
47 FP_PACK_Q (r, R);
77f01ab5
JM
48 FP_HANDLE_EXCEPTIONS;
49
50 return r;
51}
52weak_alias (__fmal, fmal)