From 7bab7883093df12048c4535b59b04e73f3b3b4ad Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Fri, 8 Jul 2022 15:59:25 +0900 Subject: Simplify BLSR code And suppress unary minus operator to unsigned type warnings by VC. --- iseq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'iseq.c') diff --git a/iseq.c b/iseq.c index 36f625d1bb..20ca93b596 100644 --- a/iseq.c +++ b/iseq.c @@ -257,7 +257,7 @@ iseq_scan_bits(unsigned int page, iseq_bits_t bits, VALUE *code, iseq_value_itr_ original_iseq[page_offset + offset] = newop; } } - bits ^= bits & -bits; // Reset Lowest Set Bit (BLSR) + bits &= bits - 1; // Reset Lowest Set Bit (BLSR) } } -- cgit v1.2.3