diff options
author | Stan Shebs <shebs@apple.com> | 2008-07-07 18:40:13 +0000 |
---|---|---|
committer | Stan Shebs <shebs@apple.com> | 2008-07-07 18:40:13 +0000 |
commit | 234647aa1e572e7f9a2b16c88ea666df78fc1315 (patch) | |
tree | 50e0122da978f51cdaa61a65efb3e76e80299263 /include | |
parent | dce9bb5d264ea2d71f29a466fd8d10e42b26d67c (diff) | |
download | gdb-234647aa1e572e7f9a2b16c88ea666df78fc1315.tar.gz |
2008-07-07 Stan Shebs <stan@codesourcery.com>
* dis-asm.h (struct disassemble_info): Add endian_code field.
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/dis-asm.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index ded2069b821..6a433eafb58 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2008-07-07 Stan Shebs <stan@codesourcery.com> + + * dis-asm.h (struct disassemble_info): Add endian_code field. + 2008-07-07 Joel Brobecker <brobecker@adacore.com> * safe-ctype.h: Add #include of ctype.h before redefining diff --git a/include/dis-asm.h b/include/dis-asm.h index 999d6eaf204..db74d85ace9 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 |