From 2984dacf540586cb17c644f4fa3564b48cdf3f61 Mon Sep 17 00:00:00 2001 From: Brad Lucier Date: Thu, 20 Jan 2000 08:12:26 +0000 Subject: [PATCH] class.c (dump_class_hierarchy): Make format agree with argument; cast pointer to unsigned long and print with %lx. * class.c (dump_class_hierarchy): Make format agree with argument; cast pointer to unsigned long and print with %lx. From-SVN: r31535 --- gcc/cp/ChangeLog | 5 +++++ gcc/cp/class.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 10efd25acc4..91dafe26921 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2000-01-20 Brad Lucier + + * class.c (dump_class_hierarchy): Make format agree with argument; + cast pointer to unsigned long and print with %lx. + 2000-01-19 Gabriel Dos Reis * decl2.c (lang_decode_option): Set default line-wrap length to 72. diff --git a/gcc/cp/class.c b/gcc/cp/class.c index 91d41ae63ff..3be8b1be342 100644 --- a/gcc/cp/class.c +++ b/gcc/cp/class.c @@ -6297,8 +6297,8 @@ dump_class_hierarchy (binfo, indent) { int i; - fprintf (stderr, "%*s0x%x (%s) %d %s\n", indent, "", - (unsigned int) binfo, + fprintf (stderr, "%*s0x%lx (%s) %d %s\n", indent, "", + (unsigned long) binfo, type_as_string (binfo, TS_PLAIN), TREE_INT_CST_LOW (BINFO_OFFSET (binfo)), BINFO_PRIMARY_MARKED_P (binfo) ? "primary" : ""); -- 2.30.2