[llvm] RuntimeLibcalls: Stop opting out of exp10 (PR #148604)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Sun Aug 3 08:03:32 PDT 2025
================
@@ -1998,7 +2014,9 @@ def isRISCV64 : RuntimeLibcallPredicate<"TT.isRISCV64()">;
def RISCVSystemLibrary
: SystemRuntimeLibrary<isRISCV,
- (add DefaultRuntimeLibcallImpls, __riscv_flush_icache,
+ (add DefaultRuntimeLibcallImpls,
+ exp10f, exp10, exp10l_f128,
----------------
nikic wrote:
Use DefaultLibmExp10 here as well? I'd prefer using it everywhere that does not need special handling, even if darwin does not support the architecture.
https://github.com/llvm/llvm-project/pull/148604
More information about the llvm-commits
mailing list