diff options
author | comex | 2015-07-07 16:17:49 -0400 |
---|---|---|
committer | comex | 2015-07-07 16:17:49 -0400 |
commit | ca6dcad6bde14ae030814bf5ce1b22af8d805792 (patch) | |
tree | 7da5edd95014cbeca992eedd723495a1072a2ef9 /lib/jump-dis.c | |
parent | progress (diff) | |
parent | warning fix (diff) | |
download | substitute-ca6dcad6bde14ae030814bf5ce1b22af8d805792.tar.gz |
Merge branch 'mconfig-work'
My pet build system project - not terribly useful for a relatively
simple thing like this, but I want to use it for other purposes, and it
does provide a nice ./configure...
Diffstat (limited to 'lib/jump-dis.c')
-rw-r--r-- | lib/jump-dis.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/jump-dis.c b/lib/jump-dis.c index 13845f5..f909cc7 100644 --- a/lib/jump-dis.c +++ b/lib/jump-dis.c @@ -140,7 +140,11 @@ bool jump_dis_main(void *code_ptr, uint_tptr pc_patch_start, uint_tptr pc_patch_ #ifdef JUMP_DIS_VERBOSE printf("jump-dis: pc=%llx op=%08x size=%x bad=%d continue_after=%d\n", (unsigned long long) ctx.base.pc, +#if defined(TARGET_x86_64) || defined(TARGET_i386) + 0, +#else ctx.base.op, +#endif ctx.base.op_size, ctx.bad_insn, ctx.continue_after_this_insn); |