[llvm] r195293 - Update comment.

Eric Christopher echristo at gmail.com
Wed Nov 20 17:01:31 PST 2013


Author: echristo
Date: Wed Nov 20 19:01:30 2013
New Revision: 195293

URL: http://llvm.org/viewvc/llvm-project?rev=195293&view=rev
Log:
Update comment.

Modified:
    llvm/trunk/lib/CodeGen/AsmPrinter/DIE.cpp

Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DIE.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DIE.cpp?rev=195293&r1=195292&r2=195293&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DIE.cpp (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DIE.cpp Wed Nov 20 19:01:30 2013
@@ -112,7 +112,7 @@ DIE::~DIE() {
     delete Children[i];
 }
 
-/// Climb up the parent chain to get the compile unit DIE to which this DIE
+/// Climb up the parent chain to get the unit DIE to which this DIE
 /// belongs.
 const DIE *DIE::getUnit() const {
   const DIE *Cu = getUnitOrNull();
@@ -120,7 +120,7 @@ const DIE *DIE::getUnit() const {
   return Cu;
 }
 
-/// Climb up the parent chain to get the compile unit DIE this DIE belongs
+/// Climb up the parent chain to get the unit DIE this DIE belongs
 /// to. Return NULL if DIE is not added to an owner yet.
 const DIE *DIE::getUnitOrNull() const {
   const DIE *p = this;





More information about the llvm-commits mailing list