summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-11-21 01:01:30 +0000
committerEric Christopher <echristo@gmail.com>2013-11-21 01:01:30 +0000
commit76ef8af3581cbbb3cf34197fa16859fb4797ec67 (patch)
tree5ed9b9dbd47bfa3d8867a5bbbcd742939cc1672a
parentba5ab8289ca4c1c81178820419e5533c692e31e6 (diff)
downloadllvm-76ef8af3581cbbb3cf34197fa16859fb4797ec67.tar.gz
llvm-76ef8af3581cbbb3cf34197fa16859fb4797ec67.tar.bz2
llvm-76ef8af3581cbbb3cf34197fa16859fb4797ec67.tar.xz
Update comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195293 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/CodeGen/AsmPrinter/DIE.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/AsmPrinter/DIE.cpp b/lib/CodeGen/AsmPrinter/DIE.cpp
index cff00a75ab..b1bcf7c63f 100644
--- a/lib/CodeGen/AsmPrinter/DIE.cpp
+++ b/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;