diff options
author | Dan Gohman <gohman@apple.com> | 2009-05-31 16:18:57 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-05-31 16:18:57 +0000 |
commit | 67e5cc56e6e2d164f9d6007243e90bd14b696771 (patch) | |
tree | 2f3df0b4aeeeb63fc77835948f9ed7e9c687193a | |
parent | a8741eb2353dc9bd9b84415ae360b6f471fc29b0 (diff) | |
download | external_llvm-67e5cc56e6e2d164f9d6007243e90bd14b696771.zip external_llvm-67e5cc56e6e2d164f9d6007243e90bd14b696771.tar.gz external_llvm-67e5cc56e6e2d164f9d6007243e90bd14b696771.tar.bz2 |
Delete an obsolete sentance from a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72667 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Analysis/LiveValues.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Analysis/LiveValues.cpp b/lib/Analysis/LiveValues.cpp index 7fc97c9..2bbe98a 100644 --- a/lib/Analysis/LiveValues.cpp +++ b/lib/Analysis/LiveValues.cpp @@ -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; |