diff options
author | Eric Christopher <echristo@gmail.com> | 2013-11-21 01:01:30 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-11-21 01:01:30 +0000 |
commit | d89221e7e39307bb836b1ea84b9e728cad42c2de (patch) | |
tree | 78d02d37eaa758c918769c1a0be7d9ee4569049b | |
parent | 54c8eaad902dac61f347aa6c5a4627aac301a9a0 (diff) | |
download | bcm5719-llvm-d89221e7e39307bb836b1ea84b9e728cad42c2de.tar.gz bcm5719-llvm-d89221e7e39307bb836b1ea84b9e728cad42c2de.zip |
Update comment.
llvm-svn: 195293
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DIE.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DIE.cpp b/llvm/lib/CodeGen/AsmPrinter/DIE.cpp index cff00a75ab4..b1bcf7c63f8 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DIE.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DIE.cpp @@ -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; |