mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 09:08:59 +00:00
2004-12-05 Randolph Chung <tausq@debian.org>
* hppa-tdep.c (unwind_command): Print the stub type for stub unwind records.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2004-12-05 Randolph Chung <tausq@debian.org>
|
||||
|
||||
* hppa-tdep.c (unwind_command): Print the stub type for stub unwind
|
||||
records.
|
||||
|
||||
2004-12-05 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* somsolib.c [PA_SOM_ONLY] (no_shared_libraries): New function.
|
||||
|
||||
@@ -2287,6 +2287,31 @@ unwind_command (char *exp, int from_tty)
|
||||
pin (Entry_FR);
|
||||
pin (Entry_GR);
|
||||
pin (Total_frame_size);
|
||||
|
||||
if (u->stub_unwind.stub_type)
|
||||
{
|
||||
printf_unfiltered ("\tstub type = ");
|
||||
switch (u->stub_unwind.stub_type)
|
||||
{
|
||||
case LONG_BRANCH:
|
||||
printf_unfiltered ("long branch\n");
|
||||
break;
|
||||
case PARAMETER_RELOCATION:
|
||||
printf_unfiltered ("parameter relocation\n");
|
||||
break;
|
||||
case EXPORT:
|
||||
printf_unfiltered ("export\n");
|
||||
break;
|
||||
case IMPORT:
|
||||
printf_unfiltered ("import\n");
|
||||
break;
|
||||
case IMPORT_SHLIB:
|
||||
printf_unfiltered ("import shlib\n");
|
||||
break;
|
||||
default:
|
||||
printf_unfiltered ("unknown (%d)\n", u->stub_unwind.stub_type);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
int
|
||||
|
||||
Reference in New Issue
Block a user