From 2404a17c822160a40b6cb0851f76e0e258ea409c Mon Sep 17 00:00:00 2001 From: "mostang.com!davidm" Date: Thu, 24 Apr 2003 20:45:07 +0000 Subject: [PATCH] (lookup_preg): Remove useless "unwind." prefix in debug output. (parse_dynamic): Ditto. (Logical change 1.87) --- src/ia64/Gparser-ia64.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/ia64/Gparser-ia64.c b/src/ia64/Gparser-ia64.c index 66609dd6..039a33df 100644 --- a/src/ia64/Gparser-ia64.c +++ b/src/ia64/Gparser-ia64.c @@ -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; }