Delete an obsolete sentance from a comment.
authorDan Gohman <gohman@apple.com>
Sun, 31 May 2009 16:18:57 +0000 (16:18 +0000)
committerDan Gohman <gohman@apple.com>
Sun, 31 May 2009 16:18:57 +0000 (16:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72667 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/LiveValues.cpp

index 7fc97c9cda704ae0548a31a40331620fe015e96d..2bbe98aa5c2492733835b4063c0d9908d48497d8 100644 (file)
@@ -162,9 +162,7 @@ LiveValues::Memo &LiveValues::compute(const Value *V) {
     }
 
     // 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;