| 419 | using namespace WasmEdge; |
| 420 | |
| 421 | static bool isVoidReturn(Span<const ValType> ValTypes) noexcept { |
| 422 | return ValTypes.empty(); |
| 423 | } |
| 424 | |
| 425 | static LLVM::Type toLLVMType(LLVM::Context LLContext, |
| 426 | const ValType &ValType) noexcept { |
no test coverage detected