From 7124c34f516c82ee483ca9a8bf3346926c7a2a80 Mon Sep 17 00:00:00 2001 From: ydah Date: Fri, 13 Dec 2024 20:44:39 +0900 Subject: [PATCH] Remove unused `FIXNUM_OR` macro from compile.c MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR remove unused FIXNUM_OR macro from compile.c before: ``` ❯ git grep 'FIXNUM_OR' compile.c:#define FIXNUM_OR(n, i) ((n)|INT2FIX(i)) ``` after: ``` ❯ git grep 'FIXNUM_OR' ``` --- compile.c | 1 - 1 file changed, 1 deletion(-) diff --git a/compile.c b/compile.c index 826260d182..afa2d1e1ea 100644 --- a/compile.c +++ b/compile.c @@ -49,7 +49,6 @@ #include "insns_info.inc" #define FIXNUM_INC(n, i) ((n)+(INT2FIX(i)&~FIXNUM_FLAG)) -#define FIXNUM_OR(n, i) ((n)|INT2FIX(i)) typedef struct iseq_link_element { enum {