diff options
| author | Vitaly Buka <vitalybuka@google.com> | 2023-12-13 11:24:19 -0800 |
|---|---|---|
| committer | Vitaly Buka <vitalybuka@google.com> | 2023-12-13 11:24:19 -0800 |
| commit | bb8c48999b0361efd053f842566c727b5fbfe96d (patch) | |
| tree | 909da3ecfa7ef50a847f35b817b7fece7d9e1a6f /libc/src/math/generic/erff.cpp | |
| parent | 2d98fe9115e37c60fd568008c27038015f28c7e3 (diff) | |
| parent | 64fa90bf8966cb886463840e5c85b9602cbbdc52 (diff) | |
[𝘀𝗽𝗿] changes introduced through rebaseusers/vitalybuka/spr/main.asan-install-pthread_atfork
Created using spr 1.3.4
[skip ci]
Diffstat (limited to 'libc/src/math/generic/erff.cpp')
| -rw-r--r-- | libc/src/math/generic/erff.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/src/math/generic/erff.cpp b/libc/src/math/generic/erff.cpp index a7b0897c3b58..d63fb8e31384 100644 --- a/libc/src/math/generic/erff.cpp +++ b/libc/src/math/generic/erff.cpp @@ -154,7 +154,7 @@ LLVM_LIBC_FUNCTION(float, erff, (float x)) { double xd = static_cast<double>(x); double xsq = xd * xd; - const uint32_t EIGHT = 3 << FPBits::FloatProp::MANTISSA_WIDTH; + const uint32_t EIGHT = 3 << FPBits::MANTISSA_WIDTH; int idx = static_cast<int>(FPBits(x_abs + EIGHT).get_val()); double x4 = xsq * xsq; |
