mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-28 22:40:24 +00:00
* elf.c (elfcore_grok_note): Fix recognition on NT_PRXFPREG notes.
This commit is contained in:
parent
6047c971a2
commit
e377ab71da
@ -1,3 +1,7 @@
|
||||
2002-10-19 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* elf.c (elfcore_grok_note): Fix recognition on NT_PRXFPREG notes.
|
||||
|
||||
2002-10-17 Denis Chertykov <denisc@overta.ru>
|
||||
|
||||
* elf32-ip2k.c (ELF_MACHINE_ALT1): Define alternate machine code
|
||||
|
@ -6803,8 +6803,8 @@ elfcore_grok_note (abfd, note)
|
||||
#endif
|
||||
|
||||
case NT_PRXFPREG: /* Linux SSE extension */
|
||||
if (note->namesz == 5
|
||||
&& ! strcmp (note->namedata, "LINUX"))
|
||||
if (note->namesz == 6
|
||||
&& strcmp (note->namedata, "LINUX") == 0)
|
||||
return elfcore_grok_prxfpreg (abfd, note);
|
||||
else
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user