From: Richard Kenner Date: Wed, 26 Apr 1995 21:25:21 +0000 (-0400) Subject: (print_node): Print TYPE_PACKED. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3fc341ac09fb135beac6be43367d5daa8f7c7d90;p=gcc.git (print_node): Print TYPE_PACKED. From-SVN: r9488 --- 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);