mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-17 20:23:59 +00:00
Delete an obsolete sentance from a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72667 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -162,9 +162,7 @@ LiveValues::Memo &LiveValues::compute(const Value *V) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Climb the immediate dominator tree from the use to the definition
|
// Climb the immediate dominator tree from the use to the definition
|
||||||
// and mark all intermediate blocks as live-through. Don't do this if
|
// and mark all intermediate blocks as live-through.
|
||||||
// the user is a PHI because such users may not be dominated by the
|
|
||||||
// definition.
|
|
||||||
for (; BB != DefBB; BB = getImmediateDominator(BB, DT)) {
|
for (; BB != DefBB; BB = getImmediateDominator(BB, DT)) {
|
||||||
if (BB != UseBB && !M.LiveThrough.insert(BB))
|
if (BB != UseBB && !M.LiveThrough.insert(BB))
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user