aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/MC/MCMachOStreamer.cpp
diff options
context:
space:
mode:
authordyung <douglas.yung@sony.com>2025-07-25 23:21:59 -0400
committerGitHub <noreply@github.com>2025-07-25 20:21:59 -0700
commitcb37916a2596e0936c76bbd9927f8353faac9fa8 (patch)
tree8b4dce8ecf8199bfe52f9625b6062d10e1a7d38c /llvm/lib/MC/MCMachOStreamer.cpp
parent3f8a05893f98989630b6f498c6c5f382afe24561 (diff)
downloadllvm-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/MCMachOStreamer.cpp')
-rw-r--r--llvm/lib/MC/MCMachOStreamer.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/MC/MCMachOStreamer.cpp b/llvm/lib/MC/MCMachOStreamer.cpp
index 4934815..8c3332c 100644
--- a/llvm/lib/MC/MCMachOStreamer.cpp
+++ b/llvm/lib/MC/MCMachOStreamer.cpp
@@ -140,8 +140,6 @@ void MCMachOStreamer::changeSection(MCSection *Section, uint32_t Subsection) {
MCSymbol *Label = getContext().createLinkerPrivateTempSymbol();
Section->setBeginSymbol(Label);
HasSectionLabel[Section] = true;
- if (!Label->isInSection())
- emitLabel(Label);
}
}