Browse Source

fixed a typo

cache-refactoring
Heiko Weiss 18 years ago
parent
commit
a453e8fdad
  1. 2
      jit/jit-function.c

2
jit/jit-function.c

@ -1148,7 +1148,7 @@ jit_function_t jit_function_from_vtable_pointer(jit_context_t context, void *vta
{
#ifdef JIT_BACKEND_INTERP
/* In the interpreted version, the function pointer is used in vtables */
jit_function_t func = (jit_function_t)vtable_pinter;
jit_function_t func = (jit_function_t)vtable_pointer;
if(func && func->context == context)
{

Loading…
Cancel
Save