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/MCELFStreamer.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/MCELFStreamer.cpp')
-rw-r--r-- | llvm/lib/MC/MCELFStreamer.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/MC/MCELFStreamer.cpp b/llvm/lib/MC/MCELFStreamer.cpp index 38744a0..b8cbaea5 100644 --- a/llvm/lib/MC/MCELFStreamer.cpp +++ b/llvm/lib/MC/MCELFStreamer.cpp @@ -89,9 +89,7 @@ void MCELFStreamer::changeSection(MCSection *Section, uint32_t Subsection) { getWriter().markGnuAbi(); MCObjectStreamer::changeSection(Section, Subsection); - auto *Sym = static_cast<MCSymbolELF *>(Section->getBeginSymbol()); - Sym->setBinding(ELF::STB_LOCAL); - Sym->setType(ELF::STT_SECTION); + Asm.registerSymbol(*Section->getBeginSymbol()); } void MCELFStreamer::emitWeakReference(MCSymbol *Alias, const MCSymbol *Target) { |