diff --git a/src/frontend.rs b/src/frontend.rs index 257000a..a7a86e8 100644 --- a/src/frontend.rs +++ b/src/frontend.rs @@ -1151,7 +1151,9 @@ impl<'a, 'b> FunctionBodyBuilder<'a, 'b> { | wasmparser::Operator::TableGet { .. } | wasmparser::Operator::TableSet { .. } | wasmparser::Operator::TableGrow { .. } - | wasmparser::Operator::TableSize { .. } => { + | wasmparser::Operator::TableSize { .. } + | wasmparser::Operator::MemoryCopy { .. } + | wasmparser::Operator::MemoryFill { .. }=> { self.emit(Operator::try_from(&op).unwrap(), loc)? }