Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Sergei Poselenov | 3190dbe | 2007-07-05 08:17:37 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2007 |
| 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
Sergei Poselenov | 3190dbe | 2007-07-05 08:17:37 +0200 | [diff] [blame] | 5 | */ |
| 6 | /* |
| 7 | * This file is originally a part of the GCC testsuite. |
| 8 | */ |
| 9 | |
| 10 | #include <common.h> |
| 11 | |
Sergei Poselenov | 3190dbe | 2007-07-05 08:17:37 +0200 | [diff] [blame] | 12 | #include <post.h> |
| 13 | |
Yuri Tikhonov | 7ed66f7 | 2008-12-20 14:54:21 +0300 | [diff] [blame] | 14 | GNU_FPOST_ATTR |
| 15 | |
Tom Rini | 3dd5d4a | 2022-12-04 10:14:17 -0500 | [diff] [blame] | 16 | #if CFG_POST & CFG_SYS_POST_FPU |
Kumar Gala | fe6555b | 2011-01-25 03:00:08 -0600 | [diff] [blame] | 17 | |
Sergei Poselenov | 3190dbe | 2007-07-05 08:17:37 +0200 | [diff] [blame] | 18 | static float rintf (float x) |
| 19 | { |
| 20 | volatile float TWO23 = 8388608.0; |
| 21 | |
| 22 | if (__builtin_fabs (x) < TWO23) |
| 23 | { |
| 24 | if (x > 0.0) |
| 25 | { |
| 26 | x += TWO23; |
| 27 | x -= TWO23; |
| 28 | } |
| 29 | else if (x < 0.0) |
| 30 | { |
| 31 | x = TWO23 - x; |
| 32 | x = -(x - TWO23); |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | return x; |
| 37 | } |
| 38 | |
| 39 | int fpu_post_test_math2 (void) |
| 40 | { |
| 41 | if (rintf (-1.5) != -2.0) { |
| 42 | post_log ("Error in FPU math2 test\n"); |
| 43 | return -1; |
| 44 | } |
| 45 | return 0; |
| 46 | } |
| 47 | |
Tom Rini | 3dd5d4a | 2022-12-04 10:14:17 -0500 | [diff] [blame] | 48 | #endif /* CFG_POST & CFG_SYS_POST_FPU */ |