diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-11-22 15:48:30 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-11-22 15:48:30 +0000 |
commit | a5a12285cc65e6c179d0be2ce54b505f3d19af37 (patch) | |
tree | 4e92462f92cdb3170ad91e14851e1ad0057713d7 /gdb | |
parent | 33b7f697881b159568524c5bab0ab28fb1b2700f (diff) | |
download | gdb-a5a12285cc65e6c179d0be2ce54b505f3d19af37.zip gdb-a5a12285cc65e6c179d0be2ce54b505f3d19af37.tar.gz gdb-a5a12285cc65e6c179d0be2ce54b505f3d19af37.tar.bz2 |
2003-11-22 Andrew Cagney <cagney@redhat.com>
* remote-rdp.c: Update copyright.
(rdp_init): #if 0 references to "target_byte_order".
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 3 | ||||
-rw-r--r-- | gdb/remote-rdp.c | 22 |
2 files changed, 23 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ab0834d6..768756c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,8 @@ 2003-11-22 Andrew Cagney <cagney@redhat.com> + * remote-rdp.c: Update copyright. + (rdp_init): #if 0 references to "target_byte_order". + * mips-tdep.c (mips_o32_store_return_value): Delete function. (mips_o32_return_value): Replace mips_o32_xfer_return_value. (mips_o32_extract_return_value): Delete function. diff --git a/gdb/remote-rdp.c b/gdb/remote-rdp.c index 6cbf73c..2db0a91 100644 --- a/gdb/remote-rdp.c +++ b/gdb/remote-rdp.c @@ -1,7 +1,7 @@ /* Remote debugging for the ARM RDP interface. - Copyright 1994, 1995, 1998, 1999, 2000, 2001, 2002 Free Software - Foundation, Inc. + Copyright 1994, 1995, 1998, 1999, 2000, 2001, 2002, 2003 Free + Software Foundation, Inc. This file is part of GDB. @@ -352,11 +352,29 @@ rdp_init (int cold, int tty) case SERIAL_TIMEOUT: break; case RDP_RES_VALUE_LITTLE_ENDIAN: +#if 0 + /* FIXME: cagney/2003-11-22: Ever since the ARM + was multi-arched (in 2002-02-08), this + assignment has had no effect. There needs to + be some sort of check/decision based on the + current architecture's byte-order vs the remote + target's byte order. For the moment disable + the assignment to keep things building. */ target_byte_order = BFD_ENDIAN_LITTLE; +#endif sync = 1; break; case RDP_RES_VALUE_BIG_ENDIAN: +#if 0 + /* FIXME: cagney/2003-11-22: Ever since the ARM + was multi-arched (in 2002-02-08), this + assignment has had no effect. There needs to + be some sort of check/decision based on the + current architecture's byte-order vs the remote + target's byte order. For the moment disable + the assignment to keep things building. */ target_byte_order = BFD_ENDIAN_BIG; +#endif sync = 1; break; default: |