diff --git a/lib/compiler/src/engine/inner.rs b/lib/compiler/src/engine/inner.rs index 84e8774222f..f08bb691294 100644 --- a/lib/compiler/src/engine/inner.rs +++ b/lib/compiler/src/engine/inner.rs @@ -369,6 +369,7 @@ impl EngineInner { #[cfg(not(target_arch = "wasm32"))] /// Register DWARF-type exception handling information associated with the code. pub(crate) fn publish_eh_frame(&mut self, eh_frame: Option<&[u8]>) -> Result<(), CompileError> { + /* self.code_memory .last_mut() .unwrap() @@ -377,6 +378,7 @@ impl EngineInner { .map_err(|e| { CompileError::Resource(format!("Error while publishing the unwind code: {}", e)) })?; + */ Ok(()) }