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

/external/llvm/include/llvm/IR/
H A DInstructions.h3264 // UnreachableInst Class
3268 /// UnreachableInst - This function has undefined behavior. In particular, the
3272 class UnreachableInst : public TerminatorInst { class in inherits:TerminatorInst
3275 UnreachableInst *clone_impl() const override;
3282 explicit UnreachableInst(LLVMContext &C, Instruction *InsertBefore = nullptr);
3283 explicit UnreachableInst(LLVMContext &C, BasicBlock *InsertAtEnd);
/external/llvm/lib/IR/
H A DInstructions.cpp696 // UnreachableInst Implementation
699 UnreachableInst::UnreachableInst(LLVMContext &Context, function in class:UnreachableInst
704 UnreachableInst::UnreachableInst(LLVMContext &Context, BasicBlock *InsertAtEnd) function in class:UnreachableInst
709 unsigned UnreachableInst::getNumSuccessorsV() const {
713 void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
714 llvm_unreachable("UnreachableInst has no successors!");
717 BasicBlock *UnreachableInst::getSuccessorV(unsigned idx) const {
718 llvm_unreachable("UnreachableInst ha
[all...]

Completed in 754 milliseconds