diff --git a/crates/compiler/test_gen/src/helpers/platform_functions.rs b/crates/compiler/test_gen/src/helpers/platform_functions.rs index a62ab1266d..90387a8c87 100644 --- a/crates/compiler/test_gen/src/helpers/platform_functions.rs +++ b/crates/compiler/test_gen/src/helpers/platform_functions.rs @@ -4,10 +4,7 @@ use core::ffi::c_void; /// The Roc application needs this. #[no_mangle] pub unsafe fn roc_alloc(size: usize, _alignment: u32) -> *mut c_void { - let ptr = libc::malloc(size); - println!("allocated: {:x?}", ptr); - - ptr + libc::malloc(size) } /// # Safety