| 86 | } |
| 87 | |
| 88 | Expect<void> Executor::runRefFuncOp(Runtime::StackManager &StackMgr, |
| 89 | uint32_t Idx) const noexcept { |
| 90 | const auto *FuncInst = getFuncInstByIdx(StackMgr, Idx); |
| 91 | StackMgr.push(RefVariant(FuncInst->getDefType(), FuncInst)); |
| 92 | return {}; |
| 93 | } |
| 94 | |
| 95 | Expect<void> Executor::runRefEqOp(ValVariant &Val1, |
| 96 | const ValVariant &Val2) const noexcept { |
nothing calls this directly
no test coverage detected