diff options
author | ydah <[email protected]> | 2024-12-13 20:44:39 +0900 |
---|---|---|
committer | Yudai Takada <[email protected]> | 2025-01-04 18:04:42 +0900 |
commit | 7124c34f516c82ee483ca9a8bf3346926c7a2a80 (patch) | |
tree | 62ca07028e461159cb13aba8821c04ffa28c5486 /compile.c | |
parent | 9ebfda07f7d51497b85961f99a00562800696de9 (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.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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 { |