diff options
Diffstat (limited to 'src/ir/utils.h')
-rw-r--r-- | src/ir/utils.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/ir/utils.h b/src/ir/utils.h index e8c5b78b3..722277bc3 100644 --- a/src/ir/utils.h +++ b/src/ir/utils.h @@ -220,13 +220,13 @@ struct ReFinalizeNode : public OverriddenVisitor<ReFinalizeNode> { void visitPush(Push* curr) { curr->finalize(); } void visitPop(Pop* curr) { curr->finalize(); } - void visitFunctionType(FunctionType* curr) { WASM_UNREACHABLE(); } - void visitExport(Export* curr) { WASM_UNREACHABLE(); } - void visitGlobal(Global* curr) { WASM_UNREACHABLE(); } - void visitTable(Table* curr) { WASM_UNREACHABLE(); } - void visitMemory(Memory* curr) { WASM_UNREACHABLE(); } - void visitEvent(Event* curr) { WASM_UNREACHABLE(); } - void visitModule(Module* curr) { WASM_UNREACHABLE(); } + void visitFunctionType(FunctionType* curr) { WASM_UNREACHABLE("unimp"); } + void visitExport(Export* curr) { WASM_UNREACHABLE("unimp"); } + void visitGlobal(Global* curr) { WASM_UNREACHABLE("unimp"); } + void visitTable(Table* curr) { WASM_UNREACHABLE("unimp"); } + void visitMemory(Memory* curr) { WASM_UNREACHABLE("unimp"); } + void visitEvent(Event* curr) { WASM_UNREACHABLE("unimp"); } + void visitModule(Module* curr) { WASM_UNREACHABLE("unimp"); } // given a stack of nested expressions, update them all from child to parent static void updateStack(ExpressionStack& expressionStack) { |