[llvm] [TLI] Add support for nan libfunc (PR #101356)

Yingwei Zheng via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 31 13:04:11 PDT 2024


================
@@ -279,6 +279,9 @@ bool llvm::inferNonMandatoryLibFuncAttrs(Function &F,
     Changed |= setNonLazyBind(F);
 
   switch (TheLibFunc) {
+  case LibFunc_nan:
+  case LibFunc_nanf:
+  case LibFunc_nanl:
----------------
dtcxzyw wrote:

> Is this correct? These are spec'd to call strtod and friends, which set errno.

In this case, strtoX never sets ERANGE. So it looks ok.




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


More information about the llvm-commits mailing list