From: Chris Lattner Date: Tue, 2 Dec 2008 18:33:11 +0000 (+0000) Subject: Comment typeo fix, thanks Duncan! X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=01c8e0233d086354b55d2047506ac6a8fc3c9f65;p=oota-llvm.git Comment typeo fix, thanks Duncan! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60429 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Value.h b/include/llvm/Value.h index bc741f27b0a..b6aa66b7055 100644 --- a/include/llvm/Value.h +++ b/include/llvm/Value.h @@ -243,7 +243,7 @@ public: return const_cast(this)->getUnderlyingObject(); } - /// DoPHITranslation - If this value is a PHI node with CurBB as a its parent, + /// DoPHITranslation - If this value is a PHI node with CurBB as its parent, /// return the value in the PHI node corresponding to PredBB. If not, return /// ourself. This is useful if you want to know the value something has in a /// predecessor block. diff --git a/lib/VMCore/Value.cpp b/lib/VMCore/Value.cpp index 1b023e2feea..eedda51264e 100644 --- a/lib/VMCore/Value.cpp +++ b/lib/VMCore/Value.cpp @@ -358,7 +358,7 @@ Value *Value::getUnderlyingObject() { return this; } -/// DoPHITranslation - If this value is a PHI node with CurBB as a its parent, +/// DoPHITranslation - If this value is a PHI node with CurBB as its parent, /// return the value in the PHI node corresponding to PredBB. If not, return /// ourself. This is useful if you want to know the value something has in a /// predecessor block.