| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
|---|
| 1 | 2 | /* IEEE754 floating point arithmetic |
|---|
| 2 | 3 | * single precision |
|---|
| 3 | 4 | */ |
|---|
| .. | .. |
|---|
| 6 | 7 | * Copyright (C) 1994-2000 Algorithmics Ltd. |
|---|
| 7 | 8 | * Copyright (C) 2017 Imagination Technologies, Ltd. |
|---|
| 8 | 9 | * Author: Aleksandar Markovic <aleksandar.markovic@imgtec.com> |
|---|
| 9 | | - * |
|---|
| 10 | | - * This program is free software; you can distribute it and/or modify it |
|---|
| 11 | | - * under the terms of the GNU General Public License (Version 2) as |
|---|
| 12 | | - * published by the Free Software Foundation. |
|---|
| 13 | | - * |
|---|
| 14 | | - * This program is distributed in the hope it will be useful, but WITHOUT |
|---|
| 15 | | - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|---|
| 16 | | - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|---|
| 17 | | - * for more details. |
|---|
| 18 | | - * |
|---|
| 19 | | - * You should have received a copy of the GNU General Public License along |
|---|
| 20 | | - * with this program. |
|---|
| 21 | 10 | */ |
|---|
| 22 | 11 | |
|---|
| 23 | 12 | #include "ieee754sp.h" |
|---|