diff options
author | Fangrui Song <i@maskray.me> | 2025-07-26 10:04:03 -0700 |
---|---|---|
committer | Fangrui Song <i@maskray.me> | 2025-07-26 10:04:04 -0700 |
commit | f517ac2083ab01294ef5799d2209cd54df9fa116 (patch) | |
tree | 85f622efe18557bc31ff46a149ead96c468a55f7 /llvm/lib/MC/MCMachOStreamer.cpp | |
parent | 0954cf1ed323e76b26237b677180f260aa4c0043 (diff) | |
download | llvm-f517ac2083ab01294ef5799d2209cd54df9fa116.zip llvm-f517ac2083ab01294ef5799d2209cd54df9fa116.tar.gz llvm-f517ac2083ab01294ef5799d2209cd54df9fa116.tar.bz2 |
MCSectionCOFF: Avoid cast
The object file format specific derived classes are used in context like
MCStreamer and MCObjectTargetWriter where the type is statically known.
We don't use isa/dyn_cast and we want to eliminate
MCSection::SectionVariant in the base class.
Diffstat (limited to 'llvm/lib/MC/MCMachOStreamer.cpp')
-rw-r--r-- | llvm/lib/MC/MCMachOStreamer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/MC/MCMachOStreamer.cpp b/llvm/lib/MC/MCMachOStreamer.cpp index 4934815..1074669 100644 --- a/llvm/lib/MC/MCMachOStreamer.cpp +++ b/llvm/lib/MC/MCMachOStreamer.cpp @@ -443,13 +443,13 @@ void MCMachOStreamer::finishImpl() { // Set the fragment atom associations by tracking the last seen atom defining // symbol. for (MCSection &Sec : getAssembler()) { - cast<MCSectionMachO>(Sec).allocAtoms(); + static_cast<MCSectionMachO &>(Sec).allocAtoms(); const MCSymbol *CurrentAtom = nullptr; size_t I = 0; for (MCFragment &Frag : Sec) { if (const MCSymbol *Symbol = DefiningSymbolMap.lookup(&Frag)) CurrentAtom = Symbol; - cast<MCSectionMachO>(Sec).setAtom(I++, CurrentAtom); + static_cast<MCSectionMachO &>(Sec).setAtom(I++, CurrentAtom); } } |