[llvm] TargetLibraryInfo: Disable roundeven variants by default except for GLIBC (PR #188898)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 10 02:45:58 PDT 2026
================
@@ -674,6 +680,12 @@ static void initializeLibCalls(TargetLibraryInfoImpl &TLI, const Triple &T,
TLI.setUnavailable(LibFunc_sqrtl_finite);
}
+ if (T.isOSLinux() && T.isGNUEnvironment()) {
----------------
arsenm wrote:
At minmum this should comment the version it's available in
https://github.com/llvm/llvm-project/pull/188898
More information about the llvm-commits
mailing list