mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-04 17:09:25 +01:00
(lookup_preg): Remove useless "unwind." prefix in debug output.
(parse_dynamic): Ditto. (Logical change 1.87)
This commit is contained in:
parent
3d3510c047
commit
2404a17c82
1 changed files with 4 additions and 5 deletions
|
@ -738,8 +738,7 @@ lookup_preg (int regnum, int memory, struct ia64_state_record *sr)
|
|||
break;
|
||||
|
||||
default:
|
||||
dprintf ("unwind.%s: invalid register number %d\n",
|
||||
__FUNCTION__, regnum);
|
||||
dprintf ("%s: invalid register number %d\n", __FUNCTION__, regnum);
|
||||
return NULL;
|
||||
}
|
||||
return sr->curr.reg + preg;
|
||||
|
@ -804,7 +803,7 @@ parse_dynamic (struct cursor *c, struct ia64_state_record *sr)
|
|||
where = IA64_WHERE_BR;
|
||||
else
|
||||
{
|
||||
dprintf ("unwind.%s: can't save to register number %d\n",
|
||||
dprintf ("%s: can't save to register number %d\n",
|
||||
__FUNCTION__, (int) op->reg);
|
||||
return -UNW_EBADREG;
|
||||
}
|
||||
|
@ -834,7 +833,7 @@ parse_dynamic (struct cursor *c, struct ia64_state_record *sr)
|
|||
{
|
||||
if (val & 0xf)
|
||||
{
|
||||
dprintf ("unwind.%s: frame-size %ld not an integer "
|
||||
dprintf ("%s: frame-size %ld not an integer "
|
||||
"multiple of 16\n",
|
||||
__FUNCTION__, (long) op->val);
|
||||
return -UNW_EINVAL;
|
||||
|
@ -843,7 +842,7 @@ parse_dynamic (struct cursor *c, struct ia64_state_record *sr)
|
|||
}
|
||||
else
|
||||
{
|
||||
dprintf ("unwind.%s: can only ADD to stack-pointer\n",
|
||||
dprintf ("%s: can only ADD to stack-pointer\n",
|
||||
__FUNCTION__);
|
||||
return -UNW_EBADREG;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue