summaryrefslogtreecommitdiff
path: root/src/wasm-binary.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm-binary.h')
-rw-r--r--src/wasm-binary.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/wasm-binary.h b/src/wasm-binary.h
index 8f4946786..a495300dc 100644
--- a/src/wasm-binary.h
+++ b/src/wasm-binary.h
@@ -1177,9 +1177,7 @@ public:
void writeDebugLocation(const Function::DebugLocation& loc);
void writeDebugLocation(Expression* curr, Function* func);
void writeDebugLocationEnd(Expression* curr, Function* func);
- void writeExtraDebugLocation(Expression* curr,
- Function* func,
- BinaryLocations::DelimiterId id);
+ void writeExtraDebugLocation(Expression* curr, Function* func, size_t id);
// helpers
void writeInlineString(const char* name);
@@ -1406,10 +1404,6 @@ public:
// Called when we parse the beginning of a control flow structure.
void startControlFlow(Expression* curr);
- // Called when we parse a later part of a control flow structure, like "end"
- // or "else".
- void continueControlFlow(BinaryLocations::DelimiterId id, BinaryLocation pos);
-
// set when we know code is unreachable in the sense of the wasm spec: we are
// in a block and after an unreachable element. this helps parse stacky wasm
// code, which can be unsuitable for our IR when unreachable.