forked from OSchip/llvm-project
CodeGen: Remove redundant DIETypeSignature::dump(), NFC
We already have this in `DIEValue`; no reason to shadow it. llvm-svn: 238082
This commit is contained in:
parent
7c180eafc1
commit
d5aa33525c
|
@ -466,7 +466,6 @@ public:
|
|||
}
|
||||
#ifndef NDEBUG
|
||||
void print(raw_ostream &O) const override;
|
||||
void dump() const;
|
||||
#endif
|
||||
};
|
||||
|
||||
|
|
|
@ -435,8 +435,6 @@ void DIETypeSignature::EmitValue(const AsmPrinter *Asm, dwarf::Form Form) const
|
|||
void DIETypeSignature::print(raw_ostream &O) const {
|
||||
O << format("Type Unit: 0x%lx", Unit.getTypeSignature());
|
||||
}
|
||||
|
||||
void DIETypeSignature::dump() const { print(dbgs()); }
|
||||
#endif
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
|
Loading…
Reference in New Issue