summaryrefslogtreecommitdiff
path: root/src/wasm-interpreter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm-interpreter.h')
-rw-r--r--src/wasm-interpreter.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/wasm-interpreter.h b/src/wasm-interpreter.h
index 83d974d47..4a04c6912 100644
--- a/src/wasm-interpreter.h
+++ b/src/wasm-interpreter.h
@@ -207,12 +207,6 @@ private:
return flow; // loop does not loop automatically, only continue achieves that
}
}
- Flow visitLabel(Label *curr) override {
- NOTE_ENTER("Label");
- Flow flow = visit(curr->body);
- flow.clearIf(curr->name);
- return flow;
- }
Flow visitBreak(Break *curr) override {
NOTE_ENTER("Break");
bool condition = true;