diff options
author | Eric Christopher <echristo@gmail.com> | 2013-10-04 23:49:31 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-10-04 23:49:31 +0000 |
commit | fe3ae441796f9f859bd5d1fa1e99a569a34867ab (patch) | |
tree | 698451c18918db35f04d91e85c532cf9f5a64142 /llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h | |
parent | f0388b7b3929c404970f1295200b12bb6f5890b2 (diff) | |
download | bcm5719-llvm-fe3ae441796f9f859bd5d1fa1e99a569a34867ab.tar.gz bcm5719-llvm-fe3ae441796f9f859bd5d1fa1e99a569a34867ab.zip |
Remove odd use of this.
llvm-svn: 192004
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h index 7928d3f0da7..8459f7744d0 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h @@ -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; } |