Searched defs:InvokeDest (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp160 /// it rewrites them to be invokes that jump to InvokeDest and fills in the PHI
226 BasicBlock *InvokeDest = II->getUnwindDest(); local
239 InvokeDest->removePredecessor(II->getParent());
261 InvokeDest->removePredecessor(II->getParent());
/external/clang/lib/CodeGen/
H A DCGCall.cpp1753 llvm::BasicBlock *InvokeDest = getInvokeDest(); local
1756 if (!InvokeDest)
1760 Inst = Builder.CreateInvoke(Callee, ContBB, InvokeDest, Args, Name);
2072 llvm::BasicBlock *InvokeDest = 0; local
2074 InvokeDest = getInvokeDest();
2077 if (!InvokeDest) {
2081 CS = Builder.CreateInvoke(Callee, Cont, InvokeDest, Args);

Completed in 87 milliseconds