[llvm] [TLI] Add basic support for fdim libcall (PR #108702)

via llvm-commits llvm-commits at lists.llvm.org
Sun Sep 15 03:59:33 PDT 2024


================
@@ -337,6 +338,7 @@ static void initializeLibCalls(TargetLibraryInfoImpl &TLI, const Triple &T,
     TLI.setUnavailable(LibFunc_powl);
     TLI.setUnavailable(LibFunc_remainderl);
     TLI.setUnavailable(LibFunc_remquol);
+    TLI.setUnavailable(LibFunc_fdiml);
----------------
braw-lee wrote:

i added it because there's a comment above stating `long double` functions are not supported by Win32
are there any previous such tests that i can refer to?

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


More information about the llvm-commits mailing list