[clang] [llvm] Add ifunc support for Windows on AArch64. (PR #111962)
Alexandros Lamprineas via cfe-commits
cfe-commits at lists.llvm.org
Mon Oct 14 13:45:20 PDT 2024
================
@@ -1505,6 +1505,10 @@ class TargetInfo : public TransferrableTargetInfo,
bool supportsIFunc() const {
if (getTriple().isOSBinFormatMachO())
return true;
+ if (getTriple().isOSWindows() && getTriple().isAArch64())
+ return true;
+ if (getTriple().getArch() == llvm::Triple::ArchType::avr)
----------------
labrinea wrote:
Is this an unrelated change?
https://github.com/llvm/llvm-project/pull/111962
More information about the cfe-commits
mailing list