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/misc.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/misc.h')
-rw-r--r-- | lib/arm/misc.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/arm/misc.h b/lib/arm/misc.h index 44d8e7a..047be2d 100644 --- a/lib/arm/misc.h +++ b/lib/arm/misc.h @@ -3,5 +3,8 @@ #define TARGET_DIS_HEADER "arm/dis-arm-multi.inc.h" #define TARGET_TRANSFORM_DIS_HEADER "arm/transform-dis-arm-multi.inc.h" #define MIN_INSN_SIZE 2 -struct arch_dis_ctx { unsigned thumb_it_length; }; +struct arch_dis_ctx { + unsigned thumb_it_length; + bool pc_low_bit; +}; enum { IS_LDRD_STRD = 1 << 16 }; |