aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorPatrick Palka <ppalka@redhat.com>2021-12-19 13:49:04 -0500
committerPatrick Palka <ppalka@redhat.com>2021-12-19 13:49:04 -0500
commiteac42299bfdf7de445b1bbed2ccb736a611f3863 (patch)
treef83dad0f7cd3fbec09534137e3cec8598cd313ad /gcc
parent30c286aa9377850c64aa35f5845a59d321a44be0 (diff)
downloadgcc-eac42299bfdf7de445b1bbed2ccb736a611f3863.zip
gcc-eac42299bfdf7de445b1bbed2ccb736a611f3863.tar.gz
gcc-eac42299bfdf7de445b1bbed2ccb736a611f3863.tar.bz2
print-tree: dump DECL_LANG_FLAG_8
gcc/ChangeLog: * print-tree.c (print_node) <case tcc_declaration>: Dump DECL_LANG_FLAG_8.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/print-tree.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c
index b5dc523..297492a 100644
--- a/gcc/print-tree.c
+++ b/gcc/print-tree.c
@@ -484,6 +484,8 @@ print_node (FILE *file, const char *prefix, tree node, int indent,
fputs (" decl_6", file);
if (DECL_LANG_FLAG_7 (node))
fputs (" decl_7", file);
+ if (DECL_LANG_FLAG_8 (node))
+ fputs (" decl_8", file);
mode = DECL_MODE (node);
fprintf (file, " %s", GET_MODE_NAME (mode));