Skip to content

Commit ccf8b9b

Browse files
committed
Drop unused JIT function
1 parent 35fb265 commit ccf8b9b

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/jit.c

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -276,11 +276,6 @@ static inline void emit1(struct jit_state *state, uint8_t x)
276276
emit_bytes(state, &x, sizeof(x));
277277
}
278278

279-
static inline void emit2(struct jit_state *state, uint16_t x)
280-
{
281-
emit_bytes(state, &x, sizeof(x));
282-
}
283-
284279
static inline void emit4(struct jit_state *state, uint32_t x)
285280
{
286281
emit_bytes(state, &x, sizeof(x));

0 commit comments

Comments
 (0)