mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
Remove unused parameter
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204663 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -479,8 +479,7 @@ public:
|
||||
}
|
||||
|
||||
/// Emit the header for this unit, not including the initial length field.
|
||||
virtual void emitHeader(const MCSection *ASection,
|
||||
const MCSymbol *ASectionSym) const;
|
||||
virtual void emitHeader(const MCSymbol *ASectionSym) const;
|
||||
|
||||
virtual DwarfCompileUnit &getCU() = 0;
|
||||
|
||||
@ -610,8 +609,7 @@ public:
|
||||
void setType(const DIE *Ty) { this->Ty = Ty; }
|
||||
|
||||
/// Emit the header for this unit, not including the initial length field.
|
||||
void emitHeader(const MCSection *ASection, const MCSymbol *ASectionSym) const
|
||||
override;
|
||||
void emitHeader(const MCSymbol *ASectionSym) const override;
|
||||
unsigned getHeaderSize() const override {
|
||||
return DwarfUnit::getHeaderSize() + sizeof(uint64_t) + // Type Signature
|
||||
sizeof(uint32_t); // Type DIE Offset
|
||||
|
Reference in New Issue
Block a user