diff options
author | comex | 2015-03-01 23:07:15 -0500 |
---|---|---|
committer | comex | 2015-03-01 23:07:15 -0500 |
commit | 7f24621bec0b0a5b3cab9ec2dfc68929a2d49d25 (patch) | |
tree | 7c227bfa4d8010e23b726eed8efb6bc51746e3f5 /lib/arm/dis-thumb2.inc.h | |
parent | seems to work (diff) | |
download | substitute-7f24621bec0b0a5b3cab9ec2dfc68929a2d49d25.tar.gz |
A number of critical fixes painstakingly discovered in the slowest way possible.
Diffstat (limited to 'lib/arm/dis-thumb2.inc.h')
-rw-r--r-- | lib/arm/dis-thumb2.inc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/arm/dis-thumb2.inc.h b/lib/arm/dis-thumb2.inc.h index 0a4c12c..b8082f3 100644 --- a/lib/arm/dis-thumb2.inc.h +++ b/lib/arm/dis-thumb2.inc.h @@ -197,7 +197,7 @@ static INLINE void P(thumb2_do_it)(tdis_ctx ctx) { static INLINE void P(dis_thumb2)(tdis_ctx ctx) { ctx->base.op = unaligned_r32(ctx->base.ptr); - ctx->base.op_size = ctx->base.newop_size = 2; + ctx->base.op_size = ctx->base.newop_size = 4; /* LLVM likes to think about Thumb2 instructions the way the ARM manual * does - 15..0 15..0 rather than 31..0 as actually laid out in memory... */ ctx->base.op = flip16(ctx->base.op); |