1*412f47f9SXin Li /* 2*412f47f9SXin Li * Coefficients for single-precision e^x - 1 function. 3*412f47f9SXin Li * 4*412f47f9SXin Li * Copyright (c) 2022-2023, Arm Limited. 5*412f47f9SXin Li * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception 6*412f47f9SXin Li */ 7*412f47f9SXin Li 8*412f47f9SXin Li #include "math_config.h" 9*412f47f9SXin Li 10*412f47f9SXin Li /* Generated using fpminimax, see tools/expm1f.sollya for details. */ 11*412f47f9SXin Li const float __expm1f_poly[] = {0x1.fffffep-2, 0x1.5554aep-3, 0x1.555736p-5, 12*412f47f9SXin Li 0x1.12287cp-7, 0x1.6b55a2p-10}; 13