diff options
Diffstat (limited to 'gcc/tree-dump.h')
-rw-r--r-- | gcc/tree-dump.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-dump.h b/gcc/tree-dump.h index 6649ed2..448ac83 100644 --- a/gcc/tree-dump.h +++ b/gcc/tree-dump.h @@ -60,7 +60,7 @@ struct dump_info /* The original node. */ const_tree node; /* User flags. */ - int flags; + dump_flags_t flags; /* The next unused node index. */ unsigned int index; /* The next column. */ @@ -87,6 +87,6 @@ extern void dump_string (dump_info_p, const char *); extern void dump_string_field (dump_info_p, const char *, const char *); extern void queue_and_dump_index (dump_info_p, const char *, const_tree, int); extern void queue_and_dump_type (dump_info_p, const_tree); -extern int dump_flag (dump_info_p, int, const_tree); +extern int dump_flag (dump_info_p, dump_flags_t, const_tree); #endif /* ! GCC_TREE_DUMP_H */ |