2002-03-07 Chris Demetriou <cgd@broadcom.com>

* igen.c (print_itrace_format): Add support for a new "%#lx" format.
This commit is contained in:
Chris Demetriou 2002-03-08 00:36:32 +00:00
parent 8d0a607a97
commit 6225b4b7fc
2 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2002-03-07 Chris Demetriou <cgd@broadcom.com>
* igen.c (print_itrace_format): Add support for a new "%#lx" format.
Tue May 23 21:39:23 2000 Andrew Cagney <cagney@b1.cygnus.com>
* configure: Regenerated to track ../common/aclocal.m4 changes.

View File

@ -445,6 +445,17 @@ print_itrace_format (lf *file,
lf_write (file, param, strlen_param);
}
}
else if (strncmp (fmt, "%#lx<", 5) == 0)
/* simple hex with 0x prefix*/
{
if (pass == 1)
lf_printf (file, "%%#lx");
else
{
lf_printf (file, "(unsigned long) ");
lf_write (file, param, strlen_param);
}
}
else if (strncmp (fmt, "%08lx<", 6) == 0)
/* simple hex */
{