[libcxx-commits] [PATCH] D127226: [libc++] Simplify type_traits and use more builtins

Manoj Gupta via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Wed Jun 22 13:18:20 PDT 2022


manojgupta added a comment.

https://godbolt.org/z/16bhGfM9d

The following code now longer works after this patch:

  #include <limits>
  
  __float128 test() {
      return std::numeric_limits<__float128>::min();
  }

@ldionne can you please suggest the best course here? I'll note that this same breakage has happened a few years back and at that time a fix was made (https://reviews.llvm.org/rGe6a39f00e8d0cd3684df54fb03d288efe2969202) which is now undone by this change.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D127226/new/

https://reviews.llvm.org/D127226



More information about the libcxx-commits mailing list