fix formatting

This commit is contained in:
2025-10-02 17:58:24 +05:30
parent 89b0a07419
commit 4d0dd68d56
4 changed files with 9 additions and 4 deletions

View File

@ -449,7 +449,9 @@ def allocate_mem(
ir_type = ctypes_to_ir(call_type)
var = builder.alloca(ir_type, name=var_name)
var.align = ir_type.width // 8
logger.info(f"Pre-allocated variable {var_name} of type {call_type}")
logger.info(
f"Pre-allocated variable {var_name} of type {call_type}"
)
elif HelperHandlerRegistry.has_handler(call_type):
# Assume return type is int64 for now
ir_type = ir.IntType(64)