#include #include #include "do_jit.h" int main(int argc, char *argv[]) { (void)argv; bool do_jit = argc > 1; struct ejit_func *f = ejit_create_func(EJIT_TYPE(int), 0, NULL); struct ejit_reloc r = ejit_jmp(f); ejit_reti(f, 0); struct ejit_label l = ejit_label(f); ejit_reti(f, 1); ejit_patch(f, r, l); struct ejit_reloc j = ejit_jmp(f); ejit_patch(f, j, l); ejit_reti(f, 2); ejit_select_compile_func(f, 0, 0, EJIT_USE64(long), do_jit); assert(ejit_run_func_i(f, 0, NULL) == 1); ejit_destroy_func(f); }