diff options
author | dyung <douglas.yung@sony.com> | 2025-07-25 23:21:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-25 20:21:59 -0700 |
commit | cb37916a2596e0936c76bbd9927f8353faac9fa8 (patch) | |
tree | 8b4dce8ecf8199bfe52f9625b6062d10e1a7d38c /llvm/lib/MC/MCSection.cpp | |
parent | 3f8a05893f98989630b6f498c6c5f382afe24561 (diff) | |
download | llvm-cb37916a2596e0936c76bbd9927f8353faac9fa8.zip llvm-cb37916a2596e0936c76bbd9927f8353faac9fa8.tar.gz llvm-cb37916a2596e0936c76bbd9927f8353faac9fa8.tar.bz2 |
Revert "MC: Allocate initial fragment and define section symbol in changeSection" (#150736)
Reverts llvm/llvm-project#150574
This is causing a test failure on AArch64 MacOS bots:
https://lab.llvm.org/buildbot/#/builders/190/builds/24187
Diffstat (limited to 'llvm/lib/MC/MCSection.cpp')
-rw-r--r-- | llvm/lib/MC/MCSection.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCSection.cpp b/llvm/lib/MC/MCSection.cpp index e738a22..023f7f2 100644 --- a/llvm/lib/MC/MCSection.cpp +++ b/llvm/lib/MC/MCSection.cpp @@ -22,7 +22,8 @@ MCSection::MCSection(SectionVariant V, StringRef Name, bool IsText, bool IsBss, MCSymbol *Begin) : Begin(Begin), HasInstructions(false), IsRegistered(false), IsText(IsText), IsBss(IsBss), LinkerRelaxable(false), Name(Name), Variant(V) { - DummyFragment.setParent(this); + // The initial subsection number is 0. Create a fragment list. + CurFragList = &Subsections.emplace_back(0u, FragList{}).second; } MCSymbol *MCSection::getEndSymbol(MCContext &Ctx) { |