[PATCH] D30506: [DAG] Prevent Stale nodes from entering worklist
Hal Finkel via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 1 10:59:24 PST 2017
hfinkel added inline comments.
================
Comment at: lib/CodeGen/SelectionDAG/DAGCombiner.cpp:137
+ // Don't add deleted nodes. This can happen when a change
+ // to a operand causes redundancies.
+ if (N->getOpcode() == ISD::DELETED_NODE)
----------------
What does "causes redundancies" mean?
https://reviews.llvm.org/D30506
More information about the llvm-commits
mailing list