From 4247507dd5e31c9fd87166f53fd67b007ecca86c Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sat, 22 Aug 2026 19:39:10 +0100 Subject: [PATCH] `-` to `/` --- src/check_asm.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/check_asm.cpp b/src/check_asm.cpp index 88392e5d1..53e758092 100644 --- a/src/check_asm.cpp +++ b/src/check_asm.cpp @@ -1211,7 +1211,7 @@ gb_internal void check_mnemonic(AsmCtx *asm_ctx, CheckerContext *ctx, Entity *tm implicit_wr &= ~implicit_rw; implicit_rd &= ~implicit_rw; - print_set("read-writes", implicit_rw); + print_set("read/writes", implicit_rw); print_set("writes", implicit_wr); print_set("reads", implicit_rd); } @@ -1605,7 +1605,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 {