summaryrefslogtreecommitdiff
path: root/src/binary-reader.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/binary-reader.h')
-rw-r--r--src/binary-reader.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/binary-reader.h b/src/binary-reader.h
index 5d923f3e..d9634d77 100644
--- a/src/binary-reader.h
+++ b/src/binary-reader.h
@@ -191,6 +191,12 @@ class BinaryReaderDelegate {
virtual Result OnAtomicRmwCmpxchgExpr(Opcode opcode,
uint32_t alignment_log2,
Address offset) = 0;
+ virtual Result OnAtomicWaitExpr(Opcode opcode,
+ uint32_t alignment_log2,
+ Address offset) = 0;
+ virtual Result OnAtomicWakeExpr(Opcode opcode,
+ uint32_t alignment_log2,
+ Address offset) = 0;
virtual Result OnBinaryExpr(Opcode opcode) = 0;
virtual Result OnBlockExpr(Index num_types, Type* sig_types) = 0;
virtual Result OnBrExpr(Index depth) = 0;
@@ -236,12 +242,6 @@ class BinaryReaderDelegate {
virtual Result OnUnaryExpr(Opcode opcode) = 0;
virtual Result OnUnreachableExpr() = 0;
- virtual Result OnWaitExpr(Opcode opcode,
- uint32_t alignment_log2,
- Address offset) = 0;
- virtual Result OnWakeExpr(Opcode opcode,
- uint32_t alignment_log2,
- Address offset) = 0;
virtual Result EndFunctionBody(Index index) = 0;
virtual Result EndCodeSection() = 0;