Remove dbg prints

This commit is contained in:
Sofia 2025-07-16 21:19:44 +03:00
parent d4616ea025
commit 4ad871ff3d

View File

@ -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,