Home | History | Annotate | Download | only in Utils

Lines Matching defs:PHIs

93   // Recursively deleting a PHI may cause multiple PHIs to be deleted
94 // or RAUW'd undef, so use an array of WeakVH for the PHIs to delete.
95 SmallVector<WeakVH, 8> PHIs;
98 PHIs.push_back(PN);
101 for (unsigned i = 0, e = PHIs.size(); i != e; ++i)
102 if (PHINode *PN = dyn_cast_or_null<PHINode>(PHIs[i].operator Value*()))
146 // Begin by getting rid of unneeded PHIs.