emit_trampoline() had its parameters changed, breaking the build on x86-64. This fixes the breakage.
Signed-off-by: Eduard - Gabriel Munteanu <[email protected]> --- arch/x86/emit-code_64.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/x86/emit-code_64.c b/arch/x86/emit-code_64.c index 82eb607..2862ddf 100644 --- a/arch/x86/emit-code_64.c +++ b/arch/x86/emit-code_64.c @@ -58,7 +58,7 @@ void emit_body(struct basic_block *bb, struct buffer *buf) } void emit_trampoline(struct compilation_unit *cu, void *call_target, - struct buffer *buf) + struct jit_trampoline *trampoline) { abort(); } -- 1.6.0.6 ------------------------------------------------------------------------------ Stay on top of everything new and different, both inside and around Java (TM) technology - register by April 22, and save $200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco. 300 plus technical and hands-on sessions. Register today. Use priority code J9JMT32. http://p.sf.net/sfu/p _______________________________________________ Jatovm-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jatovm-devel
