From 4ad871ff3d1d3a6e4f57a246637dbf2e95a6a076 Mon Sep 17 00:00:00 2001 From: sofia Date: Wed, 16 Jul 2025 21:19:44 +0300 Subject: [PATCH] Remove dbg prints --- reid-llvm-lib/src/compile.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/reid-llvm-lib/src/compile.rs b/reid-llvm-lib/src/compile.rs index e6779f7..51da435 100644 --- a/reid-llvm-lib/src/compile.rs +++ b/reid-llvm-lib/src/compile.rs @@ -501,7 +501,6 @@ impl InstructionHolder { } GetStructElemPtr(struct_val, idx) => { let t = struct_val.get_type(module.builder).unwrap(); - dbg!(&t); let Type::Ptr(struct_t) = t else { panic!() }; let type_fmt = if let Type::CustomType(type_val) = *struct_t { @@ -509,7 +508,6 @@ impl InstructionHolder { } else { format!("{:?}", struct_t) }; - dbg!(idx); LLVMBuildStructGEP2( module.builder_ref,