[clang] [compiler-rt] [llvm] [AIX] Implement the ifunc attribute. (PR #153049)
Sean Fertile via cfe-commits
cfe-commits at lists.llvm.org
Fri Oct 3 07:30:48 PDT 2025
================
@@ -2865,8 +2882,9 @@ void PPCAIXAsmPrinter::emitFunctionDescriptor() {
static_cast<MCSymbolXCOFF *>(CurrentFnDescSym)->getRepresentedCsect());
// Emit aliasing label for function descriptor csect.
- for (const GlobalAlias *Alias : GOAliasMap[&MF->getFunction()])
- OutStreamer->emitLabel(getSymbol(Alias));
+ if (MF)
----------------
mandlebug wrote:
Minor nit:
`// An Ifunc doesn't have a corresponding machine function. `
https://github.com/llvm/llvm-project/pull/153049
More information about the cfe-commits
mailing list