diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-01-29 03:51:19 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-01-29 03:51:19 +0000 |
commit | afe64c1a68ec5ba0921fd218d25257ae969b1cd2 (patch) | |
tree | 037db6f4d1cdfab0b982dbe798f56ce11c7a02eb /gdb/doc | |
parent | 75bc7ddf1b1e98d946b1b3c260c56d2d8ebd251e (diff) | |
download | gdb-afe64c1a68ec5ba0921fd218d25257ae969b1cd2.zip gdb-afe64c1a68ec5ba0921fd218d25257ae969b1cd2.tar.gz gdb-afe64c1a68ec5ba0921fd218d25257ae969b1cd2.tar.bz2 |
* arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
(target_byte_order): Initialize to BFD_ENDIAN_BIG.
(initialize_current_architecture): Update target_byte_order using
information from BFD.
* config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
* config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
* config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
Update doco.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/gdbint.texinfo | 6 |
2 files changed, 5 insertions, 6 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 1b86ea6..9ca6ef1 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2002-01-28 Andrew Cagney <ac131313@redhat.com> + + * gdbint.texinfo (Target Architecture Definition): Delete + description of TARGET_BYTE_ORDER_DEFAULT. + 2002-01-27 Eli Zaretskii <eliz@is.elta.co.il> * gdb.texinfo: Fix typos and markup. From Dmitry Sivachenko diff --git a/gdb/doc/gdbint.texinfo b/gdb/doc/gdbint.texinfo index a79ce97..85536c3 100644 --- a/gdb/doc/gdbint.texinfo +++ b/gdb/doc/gdbint.texinfo @@ -3471,12 +3471,6 @@ where @var{valbuf} is the address of the value to be stored. The default value of the ``symbol-reloading'' variable. (Never defined in current sources.) -@item TARGET_BYTE_ORDER_DEFAULT -@findex TARGET_BYTE_ORDER_DEFAULT -The ordering of bytes in the target. This must be either -@code{BFD_ENDIAN_BIG} or @code{BFD_ENDIAN_LITTLE}. This macro replaces -@code{TARGET_BYTE_ORDER} which is deprecated. - @item TARGET_CHAR_BIT @findex TARGET_CHAR_BIT Number of bits in a char; defaults to 8. |