JIT: fix compilation

regression in r4330
This commit is contained in:
pengvado 2012-07-31 21:48:43 +00:00
parent 54fc86ced8
commit eecf260b22
2 changed files with 3 additions and 3 deletions

View File

@ -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"])

View File

@ -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);