Commit bd65c564 by Nathan Sidwell Committed by Nathan Sidwell

* dbxout.c (dbxout_type): Fix printf format.

From-SVN: r84955
parent a182b26d
2004-07-20 Nathan Sidwell <nathan@codesourcery.com> 2004-07-20 Nathan Sidwell <nathan@codesourcery.com>
* dbxout.c (dbxout_type): Fix printf format.
* tree.h (binfo_member): Remove. * tree.h (binfo_member): Remove.
* tree.c (binfo_member): Remove. * tree.c (binfo_member): Remove.
...@@ -4367,5 +4369,4 @@ ...@@ -4367,5 +4369,4 @@
* libfuncs.h (LTI_gcov_init, gcov_init_libfunc): Remove. * libfuncs.h (LTI_gcov_init, gcov_init_libfunc): Remove.
* optabs.c (init_optabs): Don't set gcov_init_libfunc. * optabs.c (init_optabs): Don't set gcov_init_libfunc.
VERSION_IDENT="CVS-$Name: $ $Revision: 1.46 $-$Date: 2004/07/08 15:54:45 $-UTC"
See ChangeLog.11 for earlier changes. See ChangeLog.11 for earlier changes.
...@@ -1690,7 +1690,7 @@ dbxout_type (tree type, int full) ...@@ -1690,7 +1690,7 @@ dbxout_type (tree type, int full)
if (BINFO_N_BASE_BINFOS (binfo)) if (BINFO_N_BASE_BINFOS (binfo))
{ {
have_used_extensions = 1; have_used_extensions = 1;
fprintf (asmfile, "!%d,", BINFO_N_BASE_BINFOS (binfo)); fprintf (asmfile, "!%u,", BINFO_N_BASE_BINFOS (binfo));
CHARS (8); CHARS (8);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment