drm/connector: hdmi: Fix memory leak in drm_display_mode_from_cea_vic()
[drm/drm-misc.git] / lib / test_fpu_impl.c
blob777894dbbe86fa4b5347d97d314fb706b2d558e0
1 // SPDX-License-Identifier: GPL-2.0+
3 #include <linux/errno.h>
5 #include "test_fpu.h"
7 int test_fpu(void)
9 /*
10 * This sequence of operations tests that rounding mode is
11 * to nearest and that denormal numbers are supported.
12 * Volatile variables are used to avoid compiler optimizing
13 * the calculations away.
15 volatile double a, b, c, d, e, f, g;
17 a = 4.0;
18 b = 1e-15;
19 c = 1e-310;
21 /* Sets precision flag */
22 d = a + b;
24 /* Result depends on rounding mode */
25 e = a + b / 2;
27 /* Denormal and very large values */
28 f = b / c;
30 /* Depends on denormal support */
31 g = a + c * f;
33 if (d > a && e > a && g > a)
34 return 0;
35 else
36 return -EINVAL;