[gcc r12-6064] print-tree: dump DECL_LANG_FLAG_8

Patrick Palka ppalka@gcc.gnu.org
Sun Dec 19 18:49:16 GMT 2021


https://gcc.gnu.org/g:eac42299bfdf7de445b1bbed2ccb736a611f3863

commit r12-6064-geac42299bfdf7de445b1bbed2ccb736a611f3863
Author: Patrick Palka <ppalka@redhat.com>
Date:   Sun Dec 19 13:49:04 2021 -0500

    print-tree: dump DECL_LANG_FLAG_8
    
    gcc/ChangeLog:
    
            * print-tree.c (print_node) <case tcc_declaration>: Dump
            DECL_LANG_FLAG_8.

Diff:
---
 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));


More information about the Gcc-cvs mailing list