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 | 2299d2ba2fa95bfe29b80818a7ee6e4ff94eb50d (patch) | |
tree | fda3c078446278ae74f4eb94aa806a6cc4fe7a1c /llvm/lib | |
parent | 3d507b4b131112a9a633883402fd0f55e13dfa77 (diff) | |
download | bcm5719-llvm-2299d2ba2fa95bfe29b80818a7ee6e4ff94eb50d.tar.gz bcm5719-llvm-2299d2ba2fa95bfe29b80818a7ee6e4ff94eb50d.zip |
Delete an obsolete sentance from a comment.
llvm-svn: 72667
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Analysis/LiveValues.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/Analysis/LiveValues.cpp b/llvm/lib/Analysis/LiveValues.cpp index 7fc97c9cda7..2bbe98aa5c2 100644 --- a/llvm/lib/Analysis/LiveValues.cpp +++ b/llvm/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; |