[libc-commits] [libc] 47c4a87 - [libc][Obvious] Remove constexpr qualifier from Exp10Base::powb_lo.

Tue Ly via libc-commits libc-commits at lists.llvm.org
Mon Sep 19 07:14:25 PDT 2022


Author: Tue Ly
Date: 2022-09-19T10:13:29-04:00
New Revision: 47c4a876417a7e6810bc588679f82cea4b6073e2

URL: https://github.com/llvm/llvm-project/commit/47c4a876417a7e6810bc588679f82cea4b6073e2
DIFF: https://github.com/llvm/llvm-project/commit/47c4a876417a7e6810bc588679f82cea4b6073e2.diff

LOG: [libc][Obvious] Remove constexpr qualifier from Exp10Base::powb_lo.

Added: 
    

Modified: 
    libc/src/math/generic/explogxf.h

Removed: 
    


################################################################################
diff  --git a/libc/src/math/generic/explogxf.h b/libc/src/math/generic/explogxf.h
index b249bb8ab4c7..e60c0d5c3479 100644
--- a/libc/src/math/generic/explogxf.h
+++ b/libc/src/math/generic/explogxf.h
@@ -94,7 +94,7 @@ struct Exp10Base : public ExpBase {
                                        0x1.0470591dff149p1, 0x1.2bd7c0a9fbc4dp0,
                                        0x1.1429e74a98f43p-1};
 
-  static constexpr double powb_lo(double dx) {
+  static double powb_lo(double dx) {
     using fputil::multiply_add;
     double dx2 = dx * dx;
     // c0 = 1 + COEFFS[0] * dx


        


More information about the libc-commits mailing list