[llvm] [BPF] Handle unreachable with a unimplemented kfunc call (PR #131731)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 19 11:38:40 PDT 2025
================
@@ -521,10 +526,12 @@ SDValue BPFTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
Callee = DAG.getTargetGlobalAddress(G->getGlobal(), CLI.DL, PtrVT,
G->getOffset(), 0);
} else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee)) {
- Callee = DAG.getTargetExternalSymbol(E->getSymbol(), PtrVT, 0);
- fail(CLI.DL, DAG,
- Twine("A call to built-in function '" + StringRef(E->getSymbol()) +
- "' is not supported."));
+ if (strcmp(E->getSymbol(), "__unreachable_helper") != 0) {
----------------
yonghong-song wrote:
I see. Yes, it is a good idea. Will do this.
https://github.com/llvm/llvm-project/pull/131731
More information about the llvm-commits
mailing list