Merge latest TomB version as of 25 April

This commit is contained in:
Chips 2016-04-25 18:51:31 +00:00
parent f6baa22248
commit 5f13d69c31
37 changed files with 30914 additions and 21448 deletions

View file

@ -174,11 +174,11 @@ STATIC_INLINE int isword(uae_s32 x)
return (x>=-32768 && x<=32767);
}
#define jit_unimplemented(fmt, ...) do{ panicbug("**** Unimplemented ****"); panicbug(fmt, ## __VA_ARGS__); abort(); }while (0)
#define jit_unimplemented(fmt, ...) do{ panicbug("**** Unimplemented ****\n"); panicbug(fmt, ## __VA_ARGS__); abort(); }while (0)
static void jit_fail(const char *msg, const char *file, int line, const char *function)
{
panicbug("JIT failure in function %s from file %s at line %d: %s",
panicbug("JIT failure in function %s from file %s at line %d: %s\n",
function, file, line, msg);
abort();
}