summaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authorydah <[email protected]>2024-12-13 20:44:39 +0900
committerYudai Takada <[email protected]>2025-01-04 18:04:42 +0900
commit7124c34f516c82ee483ca9a8bf3346926c7a2a80 (patch)
tree62ca07028e461159cb13aba8821c04ffa28c5486 /compile.c
parent9ebfda07f7d51497b85961f99a00562800696de9 (diff)
Remove unused `FIXNUM_OR` macro from compile.c
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' ```
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c1
1 files changed, 0 insertions, 1 deletions
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 {