.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* ieee754 floating point arithmetic |
---|
2 | 3 | * single and double precision |
---|
3 | 4 | * |
---|
4 | 5 | * BUGS |
---|
5 | 6 | * not much dp done |
---|
6 | 7 | * doesn't generate IEEE754_INEXACT |
---|
7 | | - * |
---|
8 | 8 | */ |
---|
9 | 9 | /* |
---|
10 | 10 | * MIPS floating point support |
---|
11 | 11 | * Copyright (C) 1994-2000 Algorithmics Ltd. |
---|
12 | | - * |
---|
13 | | - * This program is free software; you can distribute it and/or modify it |
---|
14 | | - * under the terms of the GNU General Public License (Version 2) as |
---|
15 | | - * published by the Free Software Foundation. |
---|
16 | | - * |
---|
17 | | - * This program is distributed in the hope it will be useful, but WITHOUT |
---|
18 | | - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
---|
19 | | - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
---|
20 | | - * for more details. |
---|
21 | | - * |
---|
22 | | - * You should have received a copy of the GNU General Public License along |
---|
23 | | - * with this program; if not, write to the Free Software Foundation, Inc., |
---|
24 | | - * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
---|
25 | 12 | */ |
---|
26 | 13 | |
---|
27 | 14 | #include <linux/compiler.h> |
---|