[llvm-commits] [llvm] r60429 - in /llvm/trunk: include/llvm/Value.h lib/VMCore/Value.cpp
Chris Lattner
sabre at nondot.org
Tue Dec 2 10:33:13 PST 2008
Author: lattner
Date: Tue Dec 2 12:33:11 2008
New Revision: 60429
URL: http://llvm.org/viewvc/llvm-project?rev=60429&view=rev
Log:
Comment typeo fix, thanks Duncan!
Modified:
llvm/trunk/include/llvm/Value.h
llvm/trunk/lib/VMCore/Value.cpp
Modified: llvm/trunk/include/llvm/Value.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Value.h?rev=60429&r1=60428&r2=60429&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Value.h (original)
+++ llvm/trunk/include/llvm/Value.h Tue Dec 2 12:33:11 2008
@@ -243,7 +243,7 @@
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.
Modified: llvm/trunk/lib/VMCore/Value.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/VMCore/Value.cpp?rev=60429&r1=60428&r2=60429&view=diff
==============================================================================
--- llvm/trunk/lib/VMCore/Value.cpp (original)
+++ llvm/trunk/lib/VMCore/Value.cpp Tue Dec 2 12:33:11 2008
@@ -358,7 +358,7 @@
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.
More information about the llvm-commits
mailing list