MC: Remove unused overload and delete stale comment. NFC

This commit is contained in:
Fangrui Song 2026-02-07 20:19:23 -08:00
parent 10a0f40083
commit 74aa875346
2 changed files with 0 additions and 2 deletions

View File

@ -413,7 +413,6 @@ class MCSymbolIdFragment : public MCFragment {
public:
MCSymbolIdFragment(const MCSymbol *Sym) : MCFragment(FT_SymbolId), Sym(Sym) {}
const MCSymbol *getSymbol() { return Sym; }
const MCSymbol *getSymbol() const { return Sym; }
static bool classof(const MCFragment *F) {

View File

@ -307,7 +307,6 @@ public:
///
/// \param Size - The size of the symbol.
/// \param Alignment - The alignment of the symbol.
/// \param Target - Is the symbol a target-specific common-like symbol.
void setCommon(uint64_t Size, Align Alignment) {
assert(getOffset() == 0);
CommonSize = Size;