[llvm] [AArch64] Make IFUNC opt-in rather than opt-out. (PR #171648)
Anton Korobeynikov via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 12 09:15:56 PST 2025
================
@@ -769,7 +769,7 @@ class Triple {
bool isOSGlibc() const {
return (getOS() == Triple::Linux || getOS() == Triple::KFreeBSD ||
getOS() == Triple::Hurd) &&
- !isAndroid() && !isMusl();
+ !isAndroid() && !isMusl() && getEnvironment() != Triple::PAuthTest;
----------------
asl wrote:
Please add comment that pauthtest as of now implies not particular libc implementation
https://github.com/llvm/llvm-project/pull/171648
More information about the llvm-commits
mailing list