mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
10 lines
239 B
C
10 lines
239 B
C
#ifndef UJIT_CODEGEN_H
|
|
#define UJIT_CODEGEN_H 1
|
|
|
|
#include "stddef.h"
|
|
|
|
uint8_t * ujit_compile_insn(const rb_iseq_t *iseq, unsigned int insn_idx, unsigned int *next_ujit_idx);
|
|
|
|
void ujit_init_codegen(void);
|
|
|
|
#endif // #ifndef UJIT_CODEGEN_H
|