diff options
author | David Blaikie <dblaikie@gmail.com> | 2014-03-24 20:28:10 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2014-03-24 20:28:10 +0000 |
commit | d82b23778579e545f766f622d02bc491d1a8fb35 (patch) | |
tree | b0b188ebbd485791400ffc86166da9d51dbdabc6 /llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h | |
parent | 684dc80b6d0de8404d592ecaf83b0a4706366f86 (diff) | |
download | bcm5719-llvm-d82b23778579e545f766f622d02bc491d1a8fb35.tar.gz bcm5719-llvm-d82b23778579e545f766f622d02bc491d1a8fb35.zip |
Remove unused parameter
llvm-svn: 204663
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h b/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h index a9e52e674a4..ef713f7cf01 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h @@ -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 |