Remove odd use of this.
llvm-svn: 192004
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
index 7928d3f..8459f77 100644
--- a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
+++ b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
@@ -166,7 +166,7 @@
/// addDie - Adds or interns the DIE to the compile unit.
///
- void addDie(DIE *Buffer) { this->CUDie->addChild(Buffer); }
+ void addDie(DIE *Buffer) { CUDie->addChild(Buffer); }
// getIndexTyDie - Get an anonymous type for index type.
DIE *getIndexTyDie() { return IndexTyDie; }