summaryrefslogtreecommitdiff
path: root/src/ir/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ir/utils.h')
-rw-r--r--src/ir/utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ir/utils.h b/src/ir/utils.h
index 40f5aeb9a..78b546962 100644
--- a/src/ir/utils.h
+++ b/src/ir/utils.h
@@ -122,7 +122,7 @@ struct ReFinalize
void visitTable(Table* curr);
void visitElementSegment(ElementSegment* curr);
void visitMemory(Memory* curr);
- void visitEvent(Event* curr);
+ void visitTag(Tag* curr);
void visitModule(Module* curr);
private:
@@ -146,7 +146,7 @@ struct ReFinalizeNode : public OverriddenVisitor<ReFinalizeNode> {
void visitTable(Table* curr) { WASM_UNREACHABLE("unimp"); }
void visitElementSegment(ElementSegment* curr) { WASM_UNREACHABLE("unimp"); }
void visitMemory(Memory* curr) { WASM_UNREACHABLE("unimp"); }
- void visitEvent(Event* curr) { WASM_UNREACHABLE("unimp"); }
+ void visitTag(Tag* curr) { WASM_UNREACHABLE("unimp"); }
void visitModule(Module* curr) { WASM_UNREACHABLE("unimp"); }
// given a stack of nested expressions, update them all from child to parent