diff options
| author | Chris Lattner <sabre@nondot.org> | 2008-12-02 18:33:11 +0000 | 
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2008-12-02 18:33:11 +0000 | 
| commit | 027d726f10053154a3ba34b5bad2bf0979357f9d (patch) | |
| tree | 3f0d683a2fd52dac5a76f7d04fc66310e1d91a17 | |
| parent | 48b5a338260db5f08cfb336e8183d21c7d528da2 (diff) | |
| download | bcm5719-llvm-027d726f10053154a3ba34b5bad2bf0979357f9d.tar.gz bcm5719-llvm-027d726f10053154a3ba34b5bad2bf0979357f9d.zip | |
Comment typeo fix, thanks Duncan!
llvm-svn: 60429
| -rw-r--r-- | llvm/include/llvm/Value.h | 2 | ||||
| -rw-r--r-- | llvm/lib/VMCore/Value.cpp | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/llvm/include/llvm/Value.h b/llvm/include/llvm/Value.h index bc741f27b0a..b6aa66b7055 100644 --- a/llvm/include/llvm/Value.h +++ b/llvm/include/llvm/Value.h @@ -243,7 +243,7 @@ public:      return const_cast<Value*>(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/llvm/lib/VMCore/Value.cpp b/llvm/lib/VMCore/Value.cpp index 1b023e2feea..eedda51264e 100644 --- a/llvm/lib/VMCore/Value.cpp +++ b/llvm/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. | 

