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'

```
This commit is contained in:
ydah 2024-12-13 20:44:39 +09:00 committed by Yudai Takada
parent 9ebfda07f7
commit 7124c34f51

View File

@ -49,7 +49,6 @@
#include "insns_info.inc" #include "insns_info.inc"
#define FIXNUM_INC(n, i) ((n)+(INT2FIX(i)&~FIXNUM_FLAG)) #define FIXNUM_INC(n, i) ((n)+(INT2FIX(i)&~FIXNUM_FLAG))
#define FIXNUM_OR(n, i) ((n)|INT2FIX(i))
typedef struct iseq_link_element { typedef struct iseq_link_element {
enum { enum {