On 12/15/21 15:11, Patrick Palka wrote:
Tested on x86_64-pc-linux-gnu, does this look OK for trunk?

OK.

gcc/ChangeLog:

        * print-tree.c (print_node) <case tcc_declaration>: Dump
        DECL_LANG_FLAG_8.
---
  gcc/print-tree.c | 2 ++
  1 file changed, 2 insertions(+)

diff --git a/gcc/print-tree.c b/gcc/print-tree.c
index b5dc523fcb1..297492ad51c 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));

Reply via email to