reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/Instrumentation/ControlHeightReduction.cpp
 1777       BasicBlock *NewBB = CloneBasicBlock(BB, VMap, ".nonchr", &F);
 1779       VMap[BB] = NewBB;
 1792       RemapInstruction(&I, VMap,
 1805           auto It = VMap.find(V);
 1806           if (It != VMap.end()) V = It->second;
 1807           assert(VMap.find(Pred) != VMap.end() && "Pred must have been cloned");
 1807           assert(VMap.find(Pred) != VMap.end() && "Pred must have been cloned");
 1808           PN.addIncoming(V, cast<BasicBlock>(VMap[Pred]));