From 587f030cbfc46c4f6fc66f730dc55f80bf38fe42 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Tue, 18 Aug 2026 18:23:42 +0100 Subject: [PATCH] Remove use of `do` --- core/rexcode/isa/print.odin | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/rexcode/isa/print.odin b/core/rexcode/isa/print.odin index 8214cdbb6..84cf332ed 100644 --- a/core/rexcode/isa/print.odin +++ b/core/rexcode/isa/print.odin @@ -192,7 +192,9 @@ label_display_init :: proc(display: ^Label_Display, label_defs: []Label_Definiti offsets[lo] = offset } for definition in label_defs { - if definition == LABEL_UNDEFINED do continue + if definition == LABEL_UNDEFINED { + continue + } insert_sorted(&display.offsets, u32(definition)) } if names != nil {