1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-26 06:22:56 +02:00

clarify a comment, thanks Duncan.

llvm-svn: 46313
This commit is contained in:
Chris Lattner 2008-01-24 17:10:01 +00:00
parent 16a8f126d3
commit 81531125a8

View File

@ -607,8 +607,9 @@ void DAGCombiner::Run(bool RunningAfterLegalize) {
AddToWorkList(RV.Val);
AddUsersToWorkList(RV.Val);
// Add any uses of the old node to the worklist if they have a single
// use. They may be dead after this node is deleted.
// Add any uses of the old node to the worklist in case this node is the
// last one that uses them. They may become dead after this node is
// deleted.
for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
AddToWorkList(N->getOperand(i).Val);