Skip to content

Commit

Permalink
Disable publish_eh_frame
Browse files Browse the repository at this point in the history
  • Loading branch information
fschutt committed Jan 5, 2023
1 parent 15c1efd commit 5a9418a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/compiler/src/engine/inner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -377,6 +378,7 @@ impl EngineInner {
.map_err(|e| {
CompileError::Resource(format!("Error while publishing the unwind code: {}", e))
})?;
*/
Ok(())
}

Expand Down

0 comments on commit 5a9418a

Please sign in to comment.