Remove explicit (void) use of DwarfFile::DD that was accidentally left in r220452.
authorDavid Blaikie <dblaikie@gmail.com>
Thu, 23 Oct 2014 16:12:58 +0000 (16:12 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Thu, 23 Oct 2014 16:12:58 +0000 (16:12 +0000)
Caught in post-commit review by Frédéric.

llvm-svn: 220487

llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp

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