.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* |
---|
2 | 3 | * IEEE754 floating point arithmetic |
---|
3 | 4 | * single precision: MAX{,A}.f |
---|
.. | .. |
---|
10 | 11 | * MIPS floating point support |
---|
11 | 12 | * Copyright (C) 2015 Imagination Technologies, Ltd. |
---|
12 | 13 | * Author: Markos Chandras <markos.chandras@imgtec.com> |
---|
13 | | - * |
---|
14 | | - * This program is free software; you can distribute it and/or modify it |
---|
15 | | - * under the terms of the GNU General Public License as published by the |
---|
16 | | - * Free Software Foundation; version 2 of the License. |
---|
17 | 14 | */ |
---|
18 | 15 | |
---|
19 | 16 | #include "ieee754sp.h" |
---|
.. | .. |
---|
96 | 93 | |
---|
97 | 94 | case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_DNORM): |
---|
98 | 95 | SPDNORMX; |
---|
99 | | - /* fall through */ |
---|
100 | | - |
---|
| 96 | + fallthrough; |
---|
101 | 97 | case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_DNORM): |
---|
102 | 98 | SPDNORMY; |
---|
103 | 99 | break; |
---|
.. | .. |
---|
225 | 221 | |
---|
226 | 222 | case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_DNORM): |
---|
227 | 223 | SPDNORMX; |
---|
228 | | - /* fall through */ |
---|
229 | | - |
---|
| 224 | + fallthrough; |
---|
230 | 225 | case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_DNORM): |
---|
231 | 226 | SPDNORMY; |
---|
232 | 227 | break; |
---|