From: Patrick Palka Date: Sun, 19 Dec 2021 18:49:04 +0000 (-0500) Subject: print-tree: dump DECL_LANG_FLAG_8 X-Git-Tag: basepoints/gcc-13~2249 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eac42299bfdf7de445b1bbed2ccb736a611f3863;p=thirdparty%2Fgcc.git print-tree: dump DECL_LANG_FLAG_8 gcc/ChangeLog: * print-tree.c (print_node) : Dump DECL_LANG_FLAG_8. --- diff --git a/gcc/print-tree.c b/gcc/print-tree.c index b5dc523fcb1e..297492ad51cb 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));