diff options
author | Fangrui Song <i@maskray.me> | 2025-07-25 22:10:48 -0700 |
---|---|---|
committer | Fangrui Song <i@maskray.me> | 2025-07-25 22:10:48 -0700 |
commit | dd4ebe6514a9250d10004cdf8876fca7394997d2 (patch) | |
tree | abec46e8e9ea0193f086ddbd20d57df2368929e3 /llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp | |
parent | 5f3eea7ef22d2e68ac4882836ffe0b2b79acd569 (diff) | |
download | llvm-dd4ebe6514a9250d10004cdf8876fca7394997d2.zip llvm-dd4ebe6514a9250d10004cdf8876fca7394997d2.tar.gz llvm-dd4ebe6514a9250d10004cdf8876fca7394997d2.tar.bz2 |
MCSectionCOFF: Remove classof
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/CodeGen/TargetLoweringObjectFileImpl.cpp')
-rw-r--r-- | llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp b/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp index 670bf25..c93f890 100644 --- a/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp +++ b/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp @@ -2054,14 +2054,14 @@ MCSection *TargetLoweringObjectFileCOFF::getStaticCtorSection( unsigned Priority, const MCSymbol *KeySym) const { return getCOFFStaticStructorSection( getContext(), getContext().getTargetTriple(), true, Priority, KeySym, - cast<MCSectionCOFF>(StaticCtorSection)); + static_cast<MCSectionCOFF *>(StaticCtorSection)); } MCSection *TargetLoweringObjectFileCOFF::getStaticDtorSection( unsigned Priority, const MCSymbol *KeySym) const { return getCOFFStaticStructorSection( getContext(), getContext().getTargetTriple(), false, Priority, KeySym, - cast<MCSectionCOFF>(StaticDtorSection)); + static_cast<MCSectionCOFF *>(StaticDtorSection)); } const MCExpr *TargetLoweringObjectFileCOFF::lowerRelativeReference( |