diff options
author | comex | 2015-01-21 17:02:52 -0500 |
---|---|---|
committer | comex | 2015-01-21 17:03:21 -0500 |
commit | 9fbf8080fb308d9c6dad8c534ad8892c2d715087 (patch) | |
tree | 3415053faf262f7ad2766d18c0885d81ba7cbad2 /lib/arm/dis-arm-multi.inc.h | |
parent | forgot to actually check this in (diff) | |
download | substitute-9fbf8080fb308d9c6dad8c534ad8892c2d715087.tar.gz |
minor cleanup - stop caring about thumb outside of arch-specific code
(and fix makefile bug where files whose names contained 'arm' would
always be ldid'd)
Diffstat (limited to 'lib/arm/dis-arm-multi.inc.h')
-rw-r--r-- | lib/arm/dis-arm-multi.inc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/arm/dis-arm-multi.inc.h b/lib/arm/dis-arm-multi.inc.h index 56cde35..bf2767e 100644 --- a/lib/arm/dis-arm-multi.inc.h +++ b/lib/arm/dis-arm-multi.inc.h @@ -3,7 +3,7 @@ #include "dis-arm.inc.h" static INLINE void P(dis)(tdis_ctx ctx) { - if (ctx->pc_low_bit) { + if (ctx->arch.pc_low_bit) { uint16_t op = *(uint16_t *) ctx->ptr; bool is_32 = (op >> 13 & 7) == 7 && (op >> 11 & 3) != 0; if (is_32) |