[llvm-commits] [llvm] r72667 - /llvm/trunk/lib/Analysis/LiveValues.cpp
Dan Gohman
gohman at apple.com
Sun May 31 09:18:58 PDT 2009
Author: djg
Date: Sun May 31 11:18:57 2009
New Revision: 72667
URL: http://llvm.org/viewvc/llvm-project?rev=72667&view=rev
Log:
Delete an obsolete sentance from a comment.
Modified:
llvm/trunk/lib/Analysis/LiveValues.cpp
Modified: llvm/trunk/lib/Analysis/LiveValues.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/LiveValues.cpp?rev=72667&r1=72666&r2=72667&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/LiveValues.cpp (original)
+++ llvm/trunk/lib/Analysis/LiveValues.cpp Sun May 31 11:18:57 2009
@@ -162,9 +162,7 @@
}
// Climb the immediate dominator tree from the use to the definition
- // and mark all intermediate blocks as live-through. Don't do this if
- // the user is a PHI because such users may not be dominated by the
- // definition.
+ // and mark all intermediate blocks as live-through.
for (; BB != DefBB; BB = getImmediateDominator(BB, DT)) {
if (BB != UseBB && !M.LiveThrough.insert(BB))
break;
More information about the llvm-commits
mailing list