diff options
Diffstat (limited to 'src/binary-reader-nop.h')
-rw-r--r-- | src/binary-reader-nop.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/binary-reader-nop.h b/src/binary-reader-nop.h index 1bf57516..6caed9a8 100644 --- a/src/binary-reader-nop.h +++ b/src/binary-reader-nop.h @@ -213,6 +213,9 @@ class BinaryReaderNop : public BinaryReaderDelegate { Result OnAtomicWaitExpr(Opcode, uint32_t, Address) override { return Result::Ok; } + Result OnAtomicFenceExpr(uint32_t) override { + return Result::Ok; + } Result OnAtomicNotifyExpr(Opcode, uint32_t, Address) override { return Result::Ok; } |