/* Create the function object */
function = jit_function_create(context, signature);
+ jit_type_free(signature);
/* Construct the function body */
x = jit_value_get_param(function, 0);
/* Clean up */
jit_context_destroy(context);
- jit_type_free(signature);
/* Finished */
return 0;
/* Create the function object */
function = jit_function_create(context, signature);
+ jit_type_free(signature);
/* Check the condition "if(x == y)" */
x = jit_value_get_param(function, 0);
/* Clean up */
jit_context_destroy(context);
- jit_type_free(signature);
/* Finished */
return 0;
/* Create the function object */
function = jit_function_create(context, signature);
+ jit_type_free(signature);
/* Make the function recompilable */
jit_function_set_recompilable(function);
/* Create the function object */
function = jit_function_create(context, signature);
+ jit_type_free(signature);
/* Check the condition "if(x == y)" */
x = jit_value_get_param(function, 0);