[llvm] r192004 - Remove odd use of this.
Eric Christopher
echristo at gmail.com
Fri Oct 4 16:49:31 PDT 2013
Author: echristo
Date: Fri Oct 4 18:49:31 2013
New Revision: 192004
URL: http://llvm.org/viewvc/llvm-project?rev=192004&view=rev
Log:
Remove odd use of this.
Modified:
llvm/trunk/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h?rev=192004&r1=192003&r2=192004&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h Fri Oct 4 18:49:31 2013
@@ -166,7 +166,7 @@ public:
/// 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; }
More information about the llvm-commits
mailing list