From 0ba2328c32fa7fac8682e32ab2c3b9b11e2453ce Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sat, 22 Aug 2026 18:48:13 +0100 Subject: [PATCH] Remove debug code --- src/check_asm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/check_asm.cpp b/src/check_asm.cpp index 4814a4a79..9dabccb55 100644 --- a/src/check_asm.cpp +++ b/src/check_asm.cpp @@ -1545,7 +1545,7 @@ gb_internal void check_mnemonic(AsmCtx *asm_ctx, CheckerContext *ctx, Entity *tm { begin_error_block(); - bool nearly = false && best_score >= gb_max(operands.count*2 - 2, 0); + bool nearly = best_score >= gb_max(operands.count*2 - 2, 0); if (nearly) { error(instr->name, "'%.*s' operands nearly matched the expected encoding forms", LIT(name)); } else {