aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/class.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/cp/class.c')
-rw-r--r--gcc/cp/class.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/cp/class.c b/gcc/cp/class.c
index 6726a6f..ee2bb08 100644
--- a/gcc/cp/class.c
+++ b/gcc/cp/class.c
@@ -172,9 +172,9 @@ static tree find_final_overrider (tree, tree, tree);
static int make_new_vtable (tree, tree);
static tree get_primary_binfo (tree);
static int maybe_indent_hierarchy (FILE *, int, int);
-static tree dump_class_hierarchy_r (FILE *, int, tree, tree, int);
+static tree dump_class_hierarchy_r (FILE *, dump_flags_t, tree, tree, int);
static void dump_class_hierarchy (tree);
-static void dump_class_hierarchy_1 (FILE *, int, tree);
+static void dump_class_hierarchy_1 (FILE *, dump_flags_t, tree);
static void dump_array (FILE *, tree);
static void dump_vtable (tree, tree, tree);
static void dump_vtt (tree, tree);
@@ -8823,7 +8823,7 @@ maybe_indent_hierarchy (FILE * stream, int indent, int indented_p)
static tree
dump_class_hierarchy_r (FILE *stream,
- int flags,
+ dump_flags_t flags,
tree binfo,
tree igo,
int indent)
@@ -8916,7 +8916,7 @@ dump_class_hierarchy_r (FILE *stream,
/* Dump the BINFO hierarchy for T. */
static void
-dump_class_hierarchy_1 (FILE *stream, int flags, tree t)
+dump_class_hierarchy_1 (FILE *stream, dump_flags_t flags, tree t)
{
fprintf (stream, "Class %s\n", type_as_string (t, TFF_PLAIN_IDENTIFIER));
fprintf (stream, " size=%lu align=%lu\n",
@@ -8942,7 +8942,7 @@ debug_class (tree t)
static void
dump_class_hierarchy (tree t)
{
- int flags;
+ dump_flags_t flags;
FILE *stream = get_dump_info (TDI_class, &flags);
if (stream)
@@ -8976,7 +8976,7 @@ dump_array (FILE * stream, tree decl)
static void
dump_vtable (tree t, tree binfo, tree vtable)
{
- int flags;
+ dump_flags_t flags;
FILE *stream = get_dump_info (TDI_class, &flags);
if (!stream)
@@ -9005,7 +9005,7 @@ dump_vtable (tree t, tree binfo, tree vtable)
static void
dump_vtt (tree t, tree vtt)
{
- int flags;
+ dump_flags_t flags;
FILE *stream = get_dump_info (TDI_class, &flags);
if (!stream)