diff options
Diffstat (limited to 'gcc/tree-dump.c')
-rw-r--r-- | gcc/tree-dump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-dump.c b/gcc/tree-dump.c index fd1783e..347b33a 100644 --- a/gcc/tree-dump.c +++ b/gcc/tree-dump.c @@ -713,7 +713,7 @@ dequeue_and_dump (dump_info_p di) /* Return nonzero if FLAG has been specified for the dump, and NODE is not the root node of the dump. */ -int dump_flag (dump_info_p di, int flag, const_tree node) +int dump_flag (dump_info_p di, dump_flags_t flag, const_tree node) { return (di->flags & flag) && (node != di->node); } @@ -721,7 +721,7 @@ int dump_flag (dump_info_p di, int flag, const_tree node) /* Dump T, and all its children, on STREAM. */ void -dump_node (const_tree t, int flags, FILE *stream) +dump_node (const_tree t, dump_flags_t flags, FILE *stream) { struct dump_info di; dump_queue_p dq; |