From 4e4e48e495bd7d6d8435eb995cb1b4b6d5042930 Mon Sep 17 00:00:00 2001 From: Ronald Caesar Date: Thu, 15 Jan 2026 10:03:07 -0400 Subject: [PATCH] engine: change bal_instruction_t to 32-bits I do not know what I was thinking when I made it 64-bits. Signed-off-by: Ronald Caesar --- include/bal_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bal_types.h b/include/bal_types.h index 29a2042..0d84ce7 100644 --- a/include/bal_types.h +++ b/include/bal_types.h @@ -9,8 +9,8 @@ #include -typedef uint64_t bal_instruction_t; typedef uint64_t bal_guest_address_t; +typedef uint32_t bal_instruction_t; typedef uint16_t bal_instruction_count_t; typedef uint16_t bal_ssa_id_t; typedef uint8_t bal_bit_width_t;