| .. | .. | 
|---|
|  | 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ | 
|---|
| 1 | 2 | /* | 
|---|
| 2 | 3 | * IEEE754 floating point | 
|---|
| 3 | 4 | * common internal header file | 
|---|
| .. | .. | 
|---|
| 5 | 6 | /* | 
|---|
| 6 | 7 | * MIPS floating point support | 
|---|
| 7 | 8 | * Copyright (C) 1994-2000 Algorithmics Ltd. | 
|---|
| 8 |  | - * | 
|---|
| 9 |  | - *  This program is free software; you can distribute it and/or modify it | 
|---|
| 10 |  | - *  under the terms of the GNU General Public License (Version 2) as | 
|---|
| 11 |  | - *  published by the Free Software Foundation. | 
|---|
| 12 |  | - * | 
|---|
| 13 |  | - *  This program is distributed in the hope it will be useful, but WITHOUT | 
|---|
| 14 |  | - *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | 
|---|
| 15 |  | - *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License | 
|---|
| 16 |  | - *  for more details. | 
|---|
| 17 |  | - * | 
|---|
| 18 |  | - *  You should have received a copy of the GNU General Public License along | 
|---|
| 19 |  | - *  with this program; if not, write to the Free Software Foundation, Inc., | 
|---|
| 20 |  | - *  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA. | 
|---|
| 21 | 9 | */ | 
|---|
| 22 | 10 | #ifndef __IEEE754INT_H | 
|---|
| 23 | 11 | #define __IEEE754INT_H | 
|---|
| .. | .. | 
|---|
| 28 | 16 |  | 
|---|
| 29 | 17 | enum maddf_flags { | 
|---|
| 30 | 18 | MADDF_NEGATE_PRODUCT	= 1 << 0, | 
|---|
|  | 19 | +	MADDF_NEGATE_ADDITION	= 1 << 1, | 
|---|
| 31 | 20 | }; | 
|---|
| 32 | 21 |  | 
|---|
| 33 | 22 | static inline void ieee754_clearcx(void) | 
|---|