Remove explicit (void) use of DwarfFile::DD that was accidentally left in r220452.

Caught in post-commit review by Frédéric.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220487 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
David Blaikie
2014-10-23 16:12:58 +00:00
parent 06b11e36e5
commit 3d71678283

View File

@@ -20,9 +20,7 @@
namespace llvm { namespace llvm {
DwarfFile::DwarfFile(AsmPrinter *AP, DwarfDebug &DD, StringRef Pref, DwarfFile::DwarfFile(AsmPrinter *AP, DwarfDebug &DD, StringRef Pref,
BumpPtrAllocator &DA) BumpPtrAllocator &DA)
: Asm(AP), DD(DD), StrPool(DA, *Asm, Pref) { : Asm(AP), DD(DD), StrPool(DA, *Asm, Pref) {}
(void)this->DD;
}
DwarfFile::~DwarfFile() {} DwarfFile::~DwarfFile() {}