[libc-commits] [libc] [libc][math] Implement nexttoward functions (PR #72763)

Nishant Mittal via libc-commits libc-commits at lists.llvm.org
Tue Nov 21 02:02:07 PST 2023


================
@@ -169,8 +171,49 @@ LIBC_INLINE T nextafter(T from, T to) {
     int_val = (to_bits.uintval() & sign_mask) + UIntType(1);
   }
 
+  UIntType exponent_bits = int_val & FloatProperties<T>::EXPONENT_MASK;
+  if (exponent_bits == UIntType(0))
+    raise_except_if_required(FE_UNDERFLOW | FE_INEXACT);
+  else if (exponent_bits == FloatProperties<T>::EXPONENT_MASK)
+    raise_except_if_required(FE_OVERFLOW | FE_INEXACT);
+
+  return cpp::bit_cast<T>(int_val);
+}
+
+template <typename T, cpp::enable_if_t<cpp::is_floating_point_v<T>, int> = 0>
+LIBC_INLINE T nexttoward(T from, long double to) {
----------------
nishantwrp wrote:

done. just out of curiosity, what is the functional difference b/w the two approaches? 

https://github.com/llvm/llvm-project/pull/72763


More information about the libc-commits mailing list