[PATCH] D15525: [GCC] Attribute ifunc support in llvm
Dmitry Polukhin via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 1 06:55:29 PDT 2016
DmitryPolukhin added inline comments.
================
Comment at: include/llvm/CodeGen/AsmPrinter.h:550-552
@@ -548,2 +549,5 @@
GCMetadataPrinter *GetOrCreateGCPrinter(GCStrategy &C);
+ /// Emit GlobalAlias or GlobalIFunc.
+ void emitGlobalIndirectSymbol(Module &M,
+ const GlobalIndirectSymbol& GIS);
};
----------------
echristo wrote:
> This isn't part of the previous patch?
In previous patch I included things that have sense without ifunc and functions that won't be updated in ifunc patch. For printer and bitcode write the same functions will have to be updated twice so it won't reduce this patch so significantly. But OK, I'll extract as much as I can.
http://reviews.llvm.org/D15525
More information about the llvm-commits
mailing list