diff options
author | Joel Brobecker <brobecker@gnat.com> | 2013-05-07 09:50:41 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2013-05-07 09:50:41 +0000 |
commit | ff99b71b224df9f65ba8e7a588c944483bbcb5ef (patch) | |
tree | e608ade3a20eaeb0c507bda22bbb055752810e1b /gdb/rs6000-nat.c | |
parent | 26a4dda9e5c3de44c1540ab835e909f83583589d (diff) | |
download | gdb-ff99b71b224df9f65ba8e7a588c944483bbcb5ef.zip gdb-ff99b71b224df9f65ba8e7a588c944483bbcb5ef.tar.gz gdb-ff99b71b224df9f65ba8e7a588c944483bbcb5ef.tar.bz2 |
Rename TARGET_OBJECT_AIX_LIBRARIES to TARGET_OBJECT_LIBRARIES_AIX
More consistent with the name of other similar object names.
gdb/ChangeLog:
* target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
Renames TARGET_OBJECT_AIX_LIBRARIES.
* rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
TARGET_OBJECT_LIBRARIES_AIX throughout.
* solib-aix.c: Likwise.
Diffstat (limited to 'gdb/rs6000-nat.c')
-rw-r--r-- | gdb/rs6000-nat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/rs6000-nat.c b/gdb/rs6000-nat.c index a16ccf2..2ac8b43 100644 --- a/gdb/rs6000-nat.c +++ b/gdb/rs6000-nat.c @@ -424,7 +424,7 @@ rs6000_xfer_partial (struct target_ops *ops, enum target_object object, switch (object) { - case TARGET_OBJECT_AIX_LIBRARIES: + case TARGET_OBJECT_LIBRARIES_AIX: return rs6000_xfer_shared_libraries (ops, object, annex, readbuf, writebuf, offset, len); @@ -745,7 +745,7 @@ rs6000_core_ldinfo (bfd *abfd) } /* Append to OBJSTACK an XML string description of the shared library - corresponding to LDI, following the TARGET_OBJECT_AIX_LIBRARIES + corresponding to LDI, following the TARGET_OBJECT_LIBRARIES_AIX format. */ static void @@ -811,7 +811,7 @@ rs6000_xfer_shared_library (LdInfo *ldi, struct obstack *obstack) } /* Implement the to_xfer_partial target_ops method for - TARGET_OBJECT_AIX_LIBRARIES objects. */ + TARGET_OBJECT_LIBRARIES_AIX objects. */ static LONGEST rs6000_xfer_shared_libraries |