Skip to content

Commit

Permalink
remove debug printlns
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbepop committed Dec 9, 2023
1 parent 3ecbd1e commit 2444adf
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions crates/wasmi/src/module/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,6 @@ impl ModuleParser {

/// Processes the end of the Wasm binary.
fn process_end(&mut self, offset: usize) -> Result<(), ModuleError> {
println!("process_end");
self.validator.end(offset)?;
Ok(())
}
Expand Down Expand Up @@ -575,7 +574,6 @@ impl ModuleParser {
/// This is part of the bulk memory operations Wasm proposal and not yet supported
/// by `wasmi`.
fn process_data_count(&mut self, count: u32, range: Range<usize>) -> Result<(), ModuleError> {
println!("process_data_count: {count}");
self.validator
.data_count_section(count, &range)
.map_err(Into::into)
Expand All @@ -599,7 +597,6 @@ impl ModuleParser {
let segments = section
.into_iter()
.map(|segment| segment.map(DataSegment::from).map_err(ModuleError::from));
println!("process_data: {}", segments.len());
builder.push_data_segments(segments)?;
Ok(())
}
Expand Down

0 comments on commit 2444adf

Please sign in to comment.