From 3fc341ac09fb135beac6be43367d5daa8f7c7d90 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Wed, 26 Apr 1995 17:25:21 -0400 Subject: [PATCH] (print_node): Print TYPE_PACKED. From-SVN: r9488 --- gcc/print-tree.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gcc/print-tree.c b/gcc/print-tree.c index 396c3e22179..cd7e8088d34 100644 --- a/gcc/print-tree.c +++ b/gcc/print-tree.c @@ -475,6 +475,8 @@ print_node (file, prefix, node, indent) fputs (" needs-constructing", file); if (TYPE_TRANSPARENT_UNION (node)) fputs (" transparent-union", file); + if (TYPE_PACKED (node)) + fputs (" packed", file); if (TYPE_LANG_FLAG_0 (node)) fputs (" type_0", file); -- 2.30.2