This creates a stub for emit_itable_resolver_stub() that simply returns NULL.
Signed-off-by: Eduard - Gabriel Munteanu <[email protected]> --- arch/x86/emit-code.c | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/arch/x86/emit-code.c b/arch/x86/emit-code.c index 774402c..0debd5a 100644 --- a/arch/x86/emit-code.c +++ b/arch/x86/emit-code.c @@ -2105,4 +2105,11 @@ void emit_trampoline(struct compilation_unit *cu, jit_text_unlock(); } +void *emit_itable_resolver_stub(struct vm_class *vmc, + struct itable_entry **table, + unsigned int nr_entries) +{ + return NULL; +} + #endif /* CONFIG_X86_32 */ -- 1.6.0.6 ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/blackberry _______________________________________________ Jatovm-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jatovm-devel
