diff options
author | Stan Shebs <shebs@codesourcery.com> | 2008-07-07 18:40:13 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 2008-07-07 18:40:13 +0000 |
commit | 6a4fe770bc792723ce0dc92c9dac9b30eabc767e (patch) | |
tree | e784db311385b3af1d8f254d3da33fd3df747fa5 /include/dis-asm.h | |
parent | bd2e25575ca4a83f509c2d6ea3c55d93eada210c (diff) | |
download | gdb-6a4fe770bc792723ce0dc92c9dac9b30eabc767e.zip gdb-6a4fe770bc792723ce0dc92c9dac9b30eabc767e.tar.gz gdb-6a4fe770bc792723ce0dc92c9dac9b30eabc767e.tar.bz2 |
2008-07-07 Stan Shebs <stan@codesourcery.com>
* dis-asm.h (struct disassemble_info): Add endian_code field.
Diffstat (limited to 'include/dis-asm.h')
-rw-r--r-- | include/dis-asm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/dis-asm.h b/include/dis-asm.h index 999d6ea..db74d85 100644 --- a/include/dis-asm.h +++ b/include/dis-asm.h @@ -76,6 +76,8 @@ typedef struct disassemble_info unsigned long mach; /* Endianness (for bi-endian cpus). Mono-endian cpus can ignore this. */ enum bfd_endian endian; + /* Endianness of code, for mixed-endian situations such as ARM BE8. */ + enum bfd_endian endian_code; /* An arch/mach-specific bitmask of selected instruction subsets, mainly for processors with run-time-switchable instruction sets. The default, zero, means that there is no constraint. CGEN-based opcodes ports |