llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-llvm-selectiondag Author: Matt Arsenault (arsenm) <details> <summary>Changes</summary> Also introduce an error if it's not available, which is not yet testable. --- Full diff: https://github.com/llvm/llvm-project/pull/170413.diff 1 Files Affected: - (modified) llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp (+13-2) ``````````diff diff --git a/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp index 99d14a60c6ed1..8336e1d1f4134 100644 --- a/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp @@ -2381,8 +2381,19 @@ SelectionDAGLegalize::ExpandDivRemLibCall(SDNode *Node, Entry.IsZExt = !isSigned; Args.push_back(Entry); - SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC), - TLI.getPointerTy(DAG.getDataLayout())); + RTLIB::LibcallImpl LibcallImpl = TLI.getLibcallImpl(LC); + if (LibcallImpl == RTLIB::Unsupported) { + DAG.getContext()->emitError(Twine("no libcall available for ") + + Node->getOperationName(&DAG)); + SDValue Poison = DAG.getPOISON(RetVT); + Results.push_back(Poison); + Results.push_back(Poison); + return; + } + + SDValue Callee = + DAG.getExternalSymbol(TLI.getLibcallImplName(LibcallImpl).data(), + TLI.getPointerTy(DAG.getDataLayout())); SDLoc dl(Node); TargetLowering::CallLoweringInfo CLI(DAG); `````````` </details> https://github.com/llvm/llvm-project/pull/170413 _______________________________________________ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
