diff options
author | Yusra Syeda <99052248+ysyeda@users.noreply.github.com> | 2023-11-27 16:30:12 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-27 16:30:12 -0500 |
commit | 9a38a72f1d482ce3e1ecd30550d78484debd69ae (patch) | |
tree | 6384c6a0fdd7130bb2e2e1ca5fa40e2b44698a26 /llvm/lib/MC/MCObjectFileInfo.cpp | |
parent | fc6b72523f3d73b921690a713e97a433c96066c6 (diff) | |
download | llvm-9a38a72f1d482ce3e1ecd30550d78484debd69ae.zip llvm-9a38a72f1d482ce3e1ecd30550d78484debd69ae.tar.gz llvm-9a38a72f1d482ce3e1ecd30550d78484debd69ae.tar.bz2 |
[SystemZ][z/OS] This change adds support for the PPA2 section in zOS (#68926)
This PR adds support for the PPA2 fields.
---------
Co-authored-by: Yusra Syeda <yusra.syeda@ibm.com>
Diffstat (limited to 'llvm/lib/MC/MCObjectFileInfo.cpp')
-rw-r--r-- | llvm/lib/MC/MCObjectFileInfo.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/MC/MCObjectFileInfo.cpp b/llvm/lib/MC/MCObjectFileInfo.cpp index 0b5109e..1b30645 100644 --- a/llvm/lib/MC/MCObjectFileInfo.cpp +++ b/llvm/lib/MC/MCObjectFileInfo.cpp @@ -547,8 +547,13 @@ void MCObjectFileInfo::initGOFFMCObjectFileInfo(const Triple &T) { PPA1Section = Ctx->getGOFFSection(".ppa1", SectionKind::getMetadata(), TextSection, MCConstantExpr::create(GOFF::SK_PPA1, *Ctx)); + PPA2Section = + Ctx->getGOFFSection(".ppa2", SectionKind::getMetadata(), TextSection, + MCConstantExpr::create(GOFF::SK_PPA2, *Ctx)); ADASection = Ctx->getGOFFSection(".ada", SectionKind::getData(), nullptr, nullptr); + IDRLSection = + Ctx->getGOFFSection("B_IDRL", SectionKind::getData(), nullptr, nullptr); } void MCObjectFileInfo::initCOFFMCObjectFileInfo(const Triple &T) { |