1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-07-04 22:35:36 +02:00

(lookup_preg): Remove useless "unwind." prefix in debug output.

(parse_dynamic): Ditto.

(Logical change 1.87)
This commit is contained in:
mostang.com!davidm 2003-04-24 20:45:07 +00:00
parent 3d3510c047
commit 2404a17c82

View file

@ -738,8 +738,7 @@ lookup_preg (int regnum, int memory, struct ia64_state_record *sr)
break; break;
default: default:
dprintf ("unwind.%s: invalid register number %d\n", dprintf ("%s: invalid register number %d\n", __FUNCTION__, regnum);
__FUNCTION__, regnum);
return NULL; return NULL;
} }
return sr->curr.reg + preg; return sr->curr.reg + preg;
@ -804,7 +803,7 @@ parse_dynamic (struct cursor *c, struct ia64_state_record *sr)
where = IA64_WHERE_BR; where = IA64_WHERE_BR;
else 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); __FUNCTION__, (int) op->reg);
return -UNW_EBADREG; return -UNW_EBADREG;
} }
@ -834,7 +833,7 @@ parse_dynamic (struct cursor *c, struct ia64_state_record *sr)
{ {
if (val & 0xf) if (val & 0xf)
{ {
dprintf ("unwind.%s: frame-size %ld not an integer " dprintf ("%s: frame-size %ld not an integer "
"multiple of 16\n", "multiple of 16\n",
__FUNCTION__, (long) op->val); __FUNCTION__, (long) op->val);
return -UNW_EINVAL; return -UNW_EINVAL;
@ -843,7 +842,7 @@ parse_dynamic (struct cursor *c, struct ia64_state_record *sr)
} }
else else
{ {
dprintf ("unwind.%s: can only ADD to stack-pointer\n", dprintf ("%s: can only ADD to stack-pointer\n",
__FUNCTION__); __FUNCTION__);
return -UNW_EBADREG; return -UNW_EBADREG;
} }