[llvm] [WebAssembly] Make llvm.wasm.throw invokable (PR #128104)
Heejin Ahn via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 20 18:13:08 PST 2025
================
@@ -3364,14 +3364,14 @@ void SelectionDAGBuilder::visitInvoke(const InvokeInst &I) {
// but this intrinsic is special because it can be invoked, so we manually
// lower it to a DAG node here.
case Intrinsic::wasm_throw: {
- SmallVector<SDValue, 8> Ops;
- Ops.push_back(getControlRoot()); // inchain for the terminator node
const TargetLowering &TLI = DAG.getTargetLoweringInfo();
- Ops.push_back(
+ SmallVector<SDValue, 8> Ops = {
----------------
aheejin wrote:
Done: https://github.com/llvm/llvm-project/pull/128104/commits/aa7b0f6c22348c72199d8366d1841772db4982c1
https://github.com/llvm/llvm-project/pull/128104
More information about the llvm-commits
mailing list