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:
parent
8d0a607a97
commit
6225b4b7fc
@ -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.
|
||||
|
@ -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 */
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user