diff options
author | Xiangling Liao <Xiangling.Liao@ibm.com> | 2020-07-15 16:12:22 -0400 |
---|---|---|
committer | Xiangling Liao <Xiangling.Liao@ibm.com> | 2020-08-10 10:10:49 -0400 |
commit | 6ef801aa6bc01fc49a8e83ddb217470b5e2337dd (patch) | |
tree | be3f8c4f89ebcc62ac6cc51bef43782dc3a563f2 /llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp | |
parent | 07e673a02bb163a70b2b5eff8231578646a20120 (diff) | |
download | llvm-6ef801aa6bc01fc49a8e83ddb217470b5e2337dd.zip llvm-6ef801aa6bc01fc49a8e83ddb217470b5e2337dd.tar.gz llvm-6ef801aa6bc01fc49a8e83ddb217470b5e2337dd.tar.bz2 |
[AIX] Static init frontend recovery and backend support
On the frontend side, this patch recovers AIX static init implementation to
use the linkage type and function names Clang chooses for sinit related function.
On the backend side, this patch sets correct linkage and function names on aliases
created for sinit/sterm functions.
Differential Revision: https://reviews.llvm.org/D84534
Diffstat (limited to 'llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp')
-rw-r--r-- | llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp b/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp index fc08fb9..3171660 100644 --- a/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp +++ b/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp @@ -2122,13 +2122,13 @@ void TargetLoweringObjectFileXCOFF::Initialize(MCContext &Ctx, } MCSection *TargetLoweringObjectFileXCOFF::getStaticCtorSection( - unsigned Priority, const MCSymbol *KeySym) const { - report_fatal_error("XCOFF ctor section not yet implemented."); + unsigned Priority, const MCSymbol *KeySym) const { + report_fatal_error("no static constructor section on AIX"); } MCSection *TargetLoweringObjectFileXCOFF::getStaticDtorSection( - unsigned Priority, const MCSymbol *KeySym) const { - report_fatal_error("XCOFF dtor section not yet implemented."); + unsigned Priority, const MCSymbol *KeySym) const { + report_fatal_error("no static destructor section on AIX"); } const MCExpr *TargetLoweringObjectFileXCOFF::lowerRelativeReference( |