1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/ujit_compile.h
2021-10-20 18:19:23 -04:00

14 lines
255 B
C

#ifndef UJIT_COMPILE_H
#define UJIT_COMPILE_H 1
#include "stddef.h"
#include "stdint.h"
#ifndef rb_iseq_t
typedef struct rb_iseq_struct rb_iseq_t;
#define rb_iseq_t rb_iseq_t
#endif
uint8_t* ujit_compile_insn(rb_iseq_t* iseq, size_t insn_idx);
#endif