From 66013b667aeecbb87e53c50c776c9d03559cdfce Mon Sep 17 00:00:00 2001 From: Doehyun Baek Date: Tue, 23 Jul 2024 16:58:12 +0900 Subject: [PATCH] delete println in type_stack.rs --- crates/wasabi/src/instrument/add_hooks/type_stack.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/crates/wasabi/src/instrument/add_hooks/type_stack.rs b/crates/wasabi/src/instrument/add_hooks/type_stack.rs index e6cc6950..3ed74c8b 100644 --- a/crates/wasabi/src/instrument/add_hooks/type_stack.rs +++ b/crates/wasabi/src/instrument/add_hooks/type_stack.rs @@ -77,7 +77,6 @@ impl TypeStack { pub fn begin(&mut self, block_ty: FunctionType) { for &input_ty in block_ty.inputs().iter().rev() { - println!("blockty: {}", block_ty); assert_eq!( input_ty, self.pop_val(), @@ -89,7 +88,7 @@ impl TypeStack { self.push_val(input_ty) } } - + pub fn begin_if(&mut self, block_ty: FunctionType) { assert_eq!( ValType::I32, @@ -97,7 +96,6 @@ impl TypeStack { "instruction expected input type, but stack top was" ); for &input_ty in block_ty.inputs().iter().rev() { - println!("blockty: {}", block_ty); assert_eq!( input_ty, self.pop_val(),