mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-17 04:43:17 +08:00
* rs6000-nat.c (xcoff_relocate_symtab): Do nothing if debugging
a core file. Add comment in the function description.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2007-05-19 Joel Brobecker <brobecker@adacore.com>
|
||||||
|
|
||||||
|
* rs6000-nat.c (xcoff_relocate_symtab): Do nothing if debugging
|
||||||
|
a core file. Add comment in the function description.
|
||||||
|
|
||||||
2007-05-18 Caroline Tice <ctice@apple.com>
|
2007-05-18 Caroline Tice <ctice@apple.com>
|
||||||
|
|
||||||
* c-valprint.c (c_value_print): If the initialized field of the
|
* c-valprint.c (c_value_print): If the initialized field of the
|
||||||
|
@ -1016,7 +1016,9 @@ rs6000_create_inferior (char *exec_file, char *allargs, char **env, int from_tty
|
|||||||
|
|
||||||
|
|
||||||
/* xcoff_relocate_symtab - hook for symbol table relocation.
|
/* xcoff_relocate_symtab - hook for symbol table relocation.
|
||||||
also reads shared libraries. */
|
|
||||||
|
This is only applicable to live processes, and is a no-op when
|
||||||
|
debugging a core file. */
|
||||||
|
|
||||||
void
|
void
|
||||||
xcoff_relocate_symtab (unsigned int pid)
|
xcoff_relocate_symtab (unsigned int pid)
|
||||||
@ -1028,6 +1030,9 @@ xcoff_relocate_symtab (unsigned int pid)
|
|||||||
int ldisize = arch64 ? sizeof (ldi->l64) : sizeof (ldi->l32);
|
int ldisize = arch64 ? sizeof (ldi->l64) : sizeof (ldi->l32);
|
||||||
int size;
|
int size;
|
||||||
|
|
||||||
|
if (ptid_equal (inferior_ptid, null_ptid))
|
||||||
|
return;
|
||||||
|
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
size = load_segs * ldisize;
|
size = load_segs * ldisize;
|
||||||
|
Reference in New Issue
Block a user