diff options
| author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-05-23 01:26:26 +0000 |
|---|---|---|
| committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-05-23 01:26:26 +0000 |
| commit | d5aa33525c349a585a197c55a7dfd69e3ae2d41e (patch) | |
| tree | 4b9ee10d8409ee998a2aa5df93d4a29c43a4bd92 | |
| parent | 7c180eafc12c19342c6606cca88fdcb6967aefac (diff) | |
| download | bcm5719-llvm-d5aa33525c349a585a197c55a7dfd69e3ae2d41e.tar.gz bcm5719-llvm-d5aa33525c349a585a197c55a7dfd69e3ae2d41e.zip | |
CodeGen: Remove redundant DIETypeSignature::dump(), NFC
We already have this in `DIEValue`; no reason to shadow it.
llvm-svn: 238082
| -rw-r--r-- | llvm/include/llvm/CodeGen/DIE.h | 1 | ||||
| -rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DIE.cpp | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/llvm/include/llvm/CodeGen/DIE.h b/llvm/include/llvm/CodeGen/DIE.h index 7803898a8d4..c2d9457ebe1 100644 --- a/llvm/include/llvm/CodeGen/DIE.h +++ b/llvm/include/llvm/CodeGen/DIE.h @@ -466,7 +466,6 @@ public: } #ifndef NDEBUG void print(raw_ostream &O) const override; - void dump() const; #endif }; diff --git a/llvm/lib/CodeGen/AsmPrinter/DIE.cpp b/llvm/lib/CodeGen/AsmPrinter/DIE.cpp index aa6647f4395..a614080b5c2 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DIE.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DIE.cpp @@ -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 //===----------------------------------------------------------------------===// |

