From eecf260b223dd246cf9e84a3ca88a324012da364 Mon Sep 17 00:00:00 2001 From: pengvado Date: Tue, 31 Jul 2012 21:48:43 +0000 Subject: [PATCH] JIT: fix compilation regression in r4330 --- desmume/configure.ac | 4 ++-- desmume/src/arm_jit.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/desmume/configure.ac b/desmume/configure.ac index 0f58b268e..45f97e126 100644 --- a/desmume/configure.ac +++ b/desmume/configure.ac @@ -267,8 +267,8 @@ fi dnl - jit support case $host_cpu in x86|x86_64|i386|i486|i586|i686) - HAVE_JIT=no - #AC_DEFINE(HAVE_JIT) + HAVE_JIT=yes + AC_DEFINE(HAVE_JIT) ;; esac AM_CONDITIONAL([HAVE_JIT], [test "x$HAVE_JIT" = "xyes"]) diff --git a/desmume/src/arm_jit.cpp b/desmume/src/arm_jit.cpp index 20fce8446..762c3ccd2 100644 --- a/desmume/src/arm_jit.cpp +++ b/desmume/src/arm_jit.cpp @@ -217,7 +217,7 @@ static Compiler c; #endif static void emit_branch(int cond, Label to); -static void _armlog(u32 addr, u32 opcode); +static void _armlog(u8 proc, u32 addr, u32 opcode); static FileLogger logger(stderr);