#include #include #include "do_jit.h" static double data[] = { -1.0, 0.0, 0.5 }; int main() { struct ejit_operand operands[1] = { EJIT_OPERAND_FPR(0, EJIT_TYPE(double)) }; struct ejit_func *f = ejit_create_func(EJIT_VOID, 1, operands); ejit_sti_d(f, EJIT_FPR(0), &data[1]); ejit_ret(f); ejit_select_compile_func(f, 0, 1, EJIT_USE64(double), do_jit); assert(data[0] == -1.0); assert(data[1] == 0.0); assert(data[2] == 0.5); erf1(f, EJIT_ARG(42.5, double)); assert(data[0] == -1.0); assert(data[1] == 42.5); assert(data[2] == 0.5); ejit_destroy_func(f); }